{ "GUID": "b7ff06", "Name": "Custom_Model_Bag", "Transform": { "posX": 43.27, "posY": 1.48, "posZ": 4.80, "rotX": 0, "rotY": 270, "rotZ": 0, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "Rabbit Hole Expansion", "Description": "Mint Tea Fan", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614300553/046FEA88FB8D4DB6BE0AC9898149058EF32BFD0A/", "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\":{\"02c883\":{\"lock\":false,\"pos\":{\"x\":27.1277561187744,\"y\":1.49510383605957,\"z\":1.21214985847473},\"rot\":{\"x\":-4.14149461391844E-08,\"y\":270.003662109375,\"z\":5.72798626308213E-07}},\"02fc01\":{\"lock\":false,\"pos\":{\"x\":34.4325332641602,\"y\":1.49510383605957,\"z\":10.4004344940186},\"rot\":{\"x\":-3.51651635810413E-07,\"y\":270.006134033203,\"z\":-1.37707513658825E-06}},\"04b54a\":{\"lock\":false,\"pos\":{\"x\":27.1277751922607,\"y\":1.49510383605957,\"z\":-1.08783030509949},\"rot\":{\"x\":-1.95590700968751E-07,\"y\":270.003204345703,\"z\":4.27597939278712E-07}},\"099880\":{\"lock\":false,\"pos\":{\"x\":47.0866737365723,\"y\":1.49510383605957,\"z\":33.4000701904297},\"rot\":{\"x\":-6.0487245434615E-08,\"y\":270.017944335938,\"z\":-2.57313132578929E-07}},\"0a5bc6\":{\"lock\":false,\"pos\":{\"x\":27.1277523040771,\"y\":1.49510383605957,\"z\":38.010856628418},\"rot\":{\"x\":-1.31120231117166E-07,\"y\":269.973205566406,\"z\":-2.51859148647782E-07}},\"0d6af3\":{\"lock\":false,\"pos\":{\"x\":27.1277713775635,\"y\":1.49510383605957,\"z\":10.4120464324951},\"rot\":{\"x\":-1.70637164842447E-07,\"y\":269.983764648438,\"z\":-1.10898531602288E-06}},\"10020b\":{\"lock\":false,\"pos\":{\"x\":34.4325408935547,\"y\":1.49510383605957,\"z\":33.4004364013672},\"rot\":{\"x\":2.94697488634199E-10,\"y\":270.020141601563,\"z\":-4.76610694022384E-07}},\"19633b\":{\"lock\":false,\"pos\":{\"x\":52.2421760559082,\"y\":1.49510383605957,\"z\":-1.15047526359558},\"rot\":{\"x\":-2.02476357458181E-07,\"y\":270.003356933594,\"z\":-1.42171018069348E-06}},\"1dae6f\":{\"lock\":false,\"pos\":{\"x\":43.4209594726563,\"y\":1.49510383605957,\"z\":-1.08824229240417},\"rot\":{\"x\":-1.29027569073514E-07,\"y\":270.003356933594,\"z\":-1.19638616524753E-06}},\"1f94f7\":{\"lock\":false,\"pos\":{\"x\":47.0866928100586,\"y\":1.49510383605957,\"z\":38.0000686645508},\"rot\":{\"x\":-8.62802025380915E-08,\"y\":270.008422851563,\"z\":-3.10692087168718E-07}},\"267a1b\":{\"lock\":false,\"pos\":{\"x\":47.0866889953613,\"y\":1.49510383605957,\"z\":15.0002040863037},\"rot\":{\"x\":-1.26414967382971E-08,\"y\":270.005828857422,\"z\":-1.78239517367729E-07}},\"268843\":{\"lock\":false,\"pos\":{\"x\":80.106575012207,\"y\":1.16996228694916,\"z\":-31.0283088684082},\"rot\":{\"x\":-3.25647124554962E-05,\"y\":270.003326416016,\"z\":-4.41103082948757E-07}},\"269ab3\":{\"lock\":false,\"pos\":{\"x\":23.4825420379639,\"y\":1.49510383605957,\"z\":17.3119640350342},\"rot\":{\"x\":-1.35618094532219E-07,\"y\":270.006072998047,\"z\":-1.57821511947986E-06}},\"2be496\":{\"lock\":false,\"pos\":{\"x\":43.4209594726563,\"y\":1.49510383605957,\"z\":19.6117534637451},\"rot\":{\"x\":-4.45780194979761E-08,\"y\":270.005859375,\"z\":-3.12673137159436E-07}},\"2cb6e7\":{\"lock\":false,\"pos\":{\"x\":27.11208152771,\"y\":1.49510383605957,\"z\":-3.37727427482605},\"rot\":{\"x\":-1.83306610779255E-07,\"y\":270.004028320313,\"z\":-1.65376332006417E-06}},\"2f3aba\":{\"lock\":false,\"pos\":{\"x\":27.1277523040771,\"y\":1.49510383605957,\"z\":8.11211204528809},\"rot\":{\"x\":-3.95111356965572E-07,\"y\":270.006164550781,\"z\":-4.46490787453513E-07}},\"337650\":{\"lock\":false,\"pos\":{\"x\":43.4209594726563,\"y\":1.49510383605957,\"z\":1.21176064014435},\"rot\":{\"x\":1.98981069843285E-07,\"y\":270.003173828125,\"z\":-6.27183283086197E-07}},\"33eb6e\":{\"lock\":false,\"pos\":{\"x\":43.420955657959,\"y\":1.49510383605957,\"z\":35.7116012573242},\"rot\":{\"x\":-1.25642216630695E-08,\"y\":270.007263183594,\"z\":-3.49934651922013E-07}},\"340ad1\":{\"lock\":false,\"pos\":{\"x\":43.420955657959,\"y\":1.49510383605957,\"z\":38.0116271972656},\"rot\":{\"x\":-1.63163605293448E-07,\"y\":270.006958007813,\"z\":-4.23588659259622E-07}},\"349045\":{\"lock\":false,\"pos\":{\"x\":23.4825458526611,\"y\":1.49510383605957,\"z\":8.11192893981934},\"rot\":{\"x\":-9.1995076445528E-08,\"y\":270.00634765625,\"z\":-1.3672664636033E-06}},\"3752df\":{\"lock\":false,\"pos\":{\"x\":47.0866928100586,\"y\":1.49510383605957,\"z\":5.80017900466919},\"rot\":{\"x\":-5.68015785518128E-08,\"y\":270.004791259766,\"z\":-1.56182125010673E-07}},\"3d228c\":{\"lock\":false,\"pos\":{\"x\":34.4325790405273,\"y\":1.49510383605957,\"z\":-1.09947276115417},\"rot\":{\"x\":-4.88786113805872E-08,\"y\":270.003295898438,\"z\":-8.49700597882475E-07}},\"3d5eba\":{\"lock\":false,\"pos\":{\"x\":27.1277713775635,\"y\":1.49510383605957,\"z\":15.0121593475342},\"rot\":{\"x\":-1.66343312457684E-07,\"y\":269.995178222656,\"z\":-1.49097672874632E-06}},\"3e7287\":{\"lock\":false,\"pos\":{\"x\":27.1277713775635,\"y\":1.49510383605957,\"z\":17.312162399292},\"rot\":{\"x\":-1.327327368017E-07,\"y\":269.988708496094,\"z\":-1.60687545758265E-06}},\"3f0180\":{\"lock\":false,\"pos\":{\"x\":23.4825229644775,\"y\":1.49510383605957,\"z\":35.7107849121094},\"rot\":{\"x\":-9.80724976784586E-08,\"y\":269.999725341797,\"z\":-1.5915345841222E-07}},\"412cf1\":{\"lock\":false,\"pos\":{\"x\":43.4209594726563,\"y\":1.49510383605957,\"z\":24.2116222381592},\"rot\":{\"x\":-1.73780762224851E-07,\"y\":269.989685058594,\"z\":-9.79096199671403E-08}},\"41ee84\":{\"lock\":false,\"pos\":{\"x\":30.76682472229,\"y\":1.49510383605957,\"z\":5.81214952468872},\"rot\":{\"x\":1.74874131175784E-07,\"y\":270.006683349609,\"z\":-3.06766395397062E-07}},\"43ad41\":{\"lock\":false,\"pos\":{\"x\":47.0866050720215,\"y\":1.49510383605957,\"z\":1.20018696784973},\"rot\":{\"x\":-1.18194655840398E-07,\"y\":270.003570556641,\"z\":-1.58367606672982E-06}},\"43c2c3\":{\"lock\":false,\"pos\":{\"x\":47.0866928100586,\"y\":1.49510383605957,\"z\":19.6002178192139},\"rot\":{\"x\":2.63335682149091E-08,\"y\":270.005920410156,\"z\":-1.54792166995321E-06}},\"459f81\":{\"lock\":false,\"pos\":{\"x\":39.7819366455078,\"y\":1.49510383605957,\"z\":10.4116954803467},\"rot\":{\"x\":-2.07794755624491E-07,\"y\":270.006439208984,\"z\":-1.43364388804912E-06}},\"4634ae\":{\"lock\":false,\"pos\":{\"x\":34.4167442321777,\"y\":1.49510383605957,\"z\":-3.38893961906433},\"rot\":{\"x\":-5.7812663101231E-08,\"y\":270.003204345703,\"z\":-1.49852280628693E-06}},\"465927\":{\"lock\":false,\"pos\":{\"x\":43.4209785461426,\"y\":1.49510383605957,\"z\":26.5116367340088},\"rot\":{\"x\":-4.63688252239081E-08,\"y\":270.005798339844,\"z\":-1.75424020198989E-07}},\"473c08\":{\"lock\":false,\"pos\":{\"x\":47.0866928100586,\"y\":1.49510383605957,\"z\":8.10017967224121},\"rot\":{\"x\":-1.18988987196644E-06,\"y\":270.005859375,\"z\":-1.81488303496735E-07}},\"48009b\":{\"lock\":false,\"pos\":{\"x\":39.7819366455078,\"y\":1.49510383605957,\"z\":-1.08817362785339},\"rot\":{\"x\":2.76182589686869E-07,\"y\":270.003112792969,\"z\":-1.47134232975077E-06}},\"487284\":{\"lock\":false,\"pos\":{\"x\":30.7511177062988,\"y\":1.49510383605957,\"z\":-3.37733507156372},\"rot\":{\"x\":-2.08990996952707E-07,\"y\":270.003021240234,\"z\":-6.96206427619472E-07}},\"4b6428\":{\"lock\":false,\"pos\":{\"x\":52.2421340942383,\"y\":1.49510383605957,\"z\":19.5495891571045},\"rot\":{\"x\":-3.19562644790494E-07,\"y\":270.005798339844,\"z\":-1.40502777412621E-06}},\"4c0584\":{\"lock\":false,\"pos\":{\"x\":27.3436450958252,\"y\":1.49510383605957,\"z\":-7.74337720870972},\"rot\":{\"x\":-2.76829325684957E-07,\"y\":269.975891113281,\"z\":-1.57578801918135E-06}},\"4d182c\":{\"lock\":false,\"pos\":{\"x\":52.2420387268066,\"y\":1.49510383605957,\"z\":1.149542927742},\"rot\":{\"x\":4.08675830954053E-08,\"y\":270.002777099609,\"z\":-4.73463643402283E-07}},\"4d5596\":{\"lock\":false,\"pos\":{\"x\":52.2421379089355,\"y\":1.49510383605957,\"z\":10.3494472503662},\"rot\":{\"x\":-7.79895401592512E-08,\"y\":270.004760742188,\"z\":-1.80070446731406E-06}},\"4f1c7e\":{\"lock\":false,\"pos\":{\"x\":27.1277713775635,\"y\":1.49510383605957,\"z\":19.6121654510498},\"rot\":{\"x\":-1.91020802731146E-07,\"y\":270.006103515625,\"z\":-1.55970792548032E-06}},\"5cbb02\":{\"lock\":false,\"pos\":{\"x\":52.2421493530273,\"y\":1.49510383605957,\"z\":28.7494487762451},\"rot\":{\"x\":1.30792550123715E-08,\"y\":270.005554199219,\"z\":-4.40059352513344E-07}},\"5ccbc7\":{\"lock\":false,\"pos\":{\"x\":27.1277523040771,\"y\":1.49510383605957,\"z\":26.5120792388916},\"rot\":{\"x\":-4.78308095352986E-08,\"y\":270.005981445313,\"z\":-1.34516290017928E-06}},\"5db5fb\":{\"lock\":false,\"pos\":{\"x\":52.2421379089355,\"y\":1.49510383605957,\"z\":37.9494400024414},\"rot\":{\"x\":-1.20186296470592E-08,\"y\":269.992340087891,\"z\":-1.5801106201252E-06}},\"5ff300\":{\"lock\":false,\"pos\":{\"x\":39.7819366455078,\"y\":1.49510383605957,\"z\":1.21182179450989},\"rot\":{\"x\":6.49021458798416E-08,\"y\":270.002838134766,\"z\":-1.75392005985486E-06}},\"639ceb\":{\"lock\":false,\"pos\":{\"x\":30.7668056488037,\"y\":1.49510383605957,\"z\":8.11208152770996},\"rot\":{\"x\":-1.17492800200125E-06,\"y\":270.005432128906,\"z\":-5.33185087192578E-08}},\"68fe73\":{\"lock\":false,\"pos\":{\"x\":43.4209594726563,\"y\":1.49510383605957,\"z\":17.3117504119873},\"rot\":{\"x\":-1.30738158077293E-07,\"y\":270.005981445313,\"z\":-1.54630640736286E-06}},\"6bbf22\":{\"lock\":false,\"pos\":{\"x\":34.4325218200684,\"y\":1.49510383605957,\"z\":17.3005504608154},\"rot\":{\"x\":-5.64233602062814E-08,\"y\":270.006042480469,\"z\":-3.39476088129231E-07}},\"70235c\":{\"lock\":false,\"pos\":{\"x\":23.4825401306152,\"y\":1.49510383605957,\"z\":33.4107971191406},\"rot\":{\"x\":-5.41037792345378E-09,\"y\":270.010925292969,\"z\":-4.72354003022701E-07}},\"75f24b\":{\"lock\":false,\"pos\":{\"x\":52.2421379089355,\"y\":1.49510383605957,\"z\":35.6494522094727},\"rot\":{\"x\":-9.70936326893934E-08,\"y\":270.007873535156,\"z\":-1.57503916398127E-06}},\"788f24\":{\"lock\":false,\"pos\":{\"x\":34.432430267334,\"y\":1.49510383605957,\"z\":1.20052266120911},\"rot\":{\"x\":-2.22732463583952E-08,\"y\":270.002777099609,\"z\":-8.9318547225048E-07}},\"7cb35b\":{\"lock\":false,\"pos\":{\"x\":34.4325180053711,\"y\":1.49510383605957,\"z\":5.80051469802856},\"rot\":{\"x\":-9.9206708625843E-08,\"y\":270.006652832031,\"z\":-3.01636873700772E-07}},\"7d5da5\":{\"lock\":false,\"pos\":{\"x\":30.7668228149414,\"y\":1.49510383605957,\"z\":10.412015914917},\"rot\":{\"x\":-6.287688734119E-07,\"y\":270.006286621094,\"z\":-3.71382498087769E-07}},\"7ea4af\":{\"lock\":false,\"pos\":{\"x\":27.1277675628662,\"y\":1.49510383605957,\"z\":35.7108688354492},\"rot\":{\"x\":-6.91909676220348E-08,\"y\":269.990661621094,\"z\":-1.84910518896686E-07}},\"7f2a9e\":{\"lock\":false,\"pos\":{\"x\":27.1277523040771,\"y\":1.49510383605957,\"z\":33.4108581542969},\"rot\":{\"x\":-4.34519762393393E-08,\"y\":270.007751464844,\"z\":-1.67066127687576E-06}},\"7fd726\":{\"lock\":false,\"pos\":{\"x\":47.0866928100586,\"y\":1.49510383605957,\"z\":26.5000743865967},\"rot\":{\"x\":-1.64149597026153E-07,\"y\":270.005737304688,\"z\":-1.50718005897943E-06}},\"886a80\":{\"lock\":false,\"pos\":{\"x\":34.4325370788574,\"y\":1.49510383605957,\"z\":8.10053062438965},\"rot\":{\"x\":-1.11585245576862E-06,\"y\":270.006164550781,\"z\":1.10953273235737E-07}},\"8b4374\":{\"lock\":false,\"pos\":{\"x\":30.76682472229,\"y\":1.49510383605957,\"z\":15.0121212005615},\"rot\":{\"x\":-2.35461811826099E-07,\"y\":270.011352539063,\"z\":-1.33333594476426E-06}},\"8b8aa1\":{\"lock\":false,\"pos\":{\"x\":23.4825439453125,\"y\":1.49510383605957,\"z\":15.0119533538818},\"rot\":{\"x\":-2.53659123927719E-07,\"y\":270.006195068359,\"z\":-1.45052081279573E-06}},\"911810\":{\"lock\":false,\"pos\":{\"x\":47.0709114074707,\"y\":1.49510383605957,\"z\":-3.38927555084229},\"rot\":{\"x\":3.54519073653137E-07,\"y\":270.002685546875,\"z\":-1.71473161003632E-07}},\"97fcaf\":{\"lock\":false,\"pos\":{\"x\":34.4325332641602,\"y\":1.49510383605957,\"z\":15.0005626678467},\"rot\":{\"x\":-2.12879712080394E-07,\"y\":270.000579833984,\"z\":-1.44761702358664E-06}},\"98fdce\":{\"lock\":false,\"pos\":{\"x\":34.4325981140137,\"y\":1.49510383605957,\"z\":38.004508972168},\"rot\":{\"x\":-1.49480072764163E-07,\"y\":269.987243652344,\"z\":-2.68615593768118E-07}},\"9c599b\":{\"lock\":false,\"pos\":{\"x\":23.788911819458,\"y\":1.49510383605957,\"z\":-7.74339246749878},\"rot\":{\"x\":-8.75613523021457E-07,\"y\":269.985076904297,\"z\":4.60214465647368E-07}},\"9d3cb8\":{\"lock\":false,\"pos\":{\"x\":34.4324913024902,\"y\":1.49510383605957,\"z\":35.7076110839844},\"rot\":{\"x\":-1.11338636088476E-07,\"y\":270.031036376953,\"z\":-2.46139279624913E-07}},\"9d50cf\":{\"lock\":false,\"pos\":{\"x\":30.7668209075928,\"y\":1.49510383605957,\"z\":17.3121318817139},\"rot\":{\"x\":1.32222439219731E-07,\"y\":270.004577636719,\"z\":-3.53319222767823E-07}},\"9f71b2\":{\"lock\":false,\"pos\":{\"x\":43.4209747314453,\"y\":1.49510383605957,\"z\":33.4116516113281},\"rot\":{\"x\":-1.40170513418525E-07,\"y\":270.020416259766,\"z\":-1.46124227740074E-06}},\"9facb8\":{\"lock\":false,\"pos\":{\"x\":43.4209823608398,\"y\":1.49510383605957,\"z\":5.81179094314575},\"rot\":{\"x\":-9.27222814084416E-08,\"y\":270.006134033203,\"z\":-1.70852911196562E-06}},\"9feaf2\":{\"lock\":false,\"pos\":{\"x\":23.4825420379639,\"y\":1.49510383605957,\"z\":38.0107955932617},\"rot\":{\"x\":-1.84210087184056E-08,\"y\":270.008148193359,\"z\":-9.97713527794986E-07}},\"a46c2b\":{\"lock\":false,\"pos\":{\"x\":23.4825420379639,\"y\":1.49510383605957,\"z\":28.8120212554932},\"rot\":{\"x\":-2.49770295113194E-07,\"y\":270.006042480469,\"z\":-1.20489937671664E-06}},\"a6306e\":{\"lock\":false,\"pos\":{\"x\":43.4209785461426,\"y\":1.49510383605957,\"z\":28.8116397857666},\"rot\":{\"x\":-2.42879309553246E-07,\"y\":270.005767822266,\"z\":-1.50601113091398E-06}},\"a8db40\":{\"lock\":false,\"pos\":{\"x\":39.7819328308105,\"y\":1.49510383605957,\"z\":28.8117427825928},\"rot\":{\"x\":-6.23391329668266E-08,\"y\":270.005798339844,\"z\":-2.354101269475E-07}},\"a9a0c8\":{\"lock\":false,\"pos\":{\"x\":43.4052734375,\"y\":1.49510383605957,\"z\":-3.37769412994385},\"rot\":{\"x\":3.12678963609869E-07,\"y\":270.002593994141,\"z\":-1.41378198037501E-08}},\"ad0691\":{\"lock\":false,\"pos\":{\"x\":34.4325256347656,\"y\":1.49510383605957,\"z\":28.8004207611084},\"rot\":{\"x\":-4.47920811552649E-08,\"y\":270.005920410156,\"z\":-1.63713013989764E-06}},\"ad95fd\":{\"lock\":false,\"pos\":{\"x\":30.7668228149414,\"y\":1.49510383605957,\"z\":35.7119674682617},\"rot\":{\"x\":-7.77582513933339E-08,\"y\":269.972717285156,\"z\":-5.08595121573308E-09}},\"b0dd94\":{\"lock\":false,\"pos\":{\"x\":34.4325370788574,\"y\":1.49510383605957,\"z\":24.2004222869873},\"rot\":{\"x\":-2.40058994904757E-07,\"y\":269.989654541016,\"z\":-1.4354491213453E-06}},\"b221a7\":{\"lock\":false,\"pos\":{\"x\":23.4825267791748,\"y\":1.49510383605957,\"z\":19.6119441986084},\"rot\":{\"x\":-1.42348909548673E-07,\"y\":270.006134033203,\"z\":-1.48785738929291E-06}},\"b3d984\":{\"lock\":false,\"pos\":{\"x\":30.7667999267578,\"y\":1.49510383605957,\"z\":33.411994934082},\"rot\":{\"x\":-3.90818314599528E-07,\"y\":270.016967773438,\"z\":8.99016697530897E-07}},\"b47adf\":{\"lock\":false,\"pos\":{\"x\":52.2421379089355,\"y\":1.49510383605957,\"z\":17.2495861053467},\"rot\":{\"x\":-2.46900754063972E-07,\"y\":269.975738525391,\"z\":-1.13103780563506E-07}},\"b826dd\":{\"lock\":false,\"pos\":{\"x\":43.4209785461426,\"y\":1.49510383605957,\"z\":15.0117626190186},\"rot\":{\"x\":-1.63533997010745E-07,\"y\":270.006134033203,\"z\":-1.60750118993747E-06}},\"bae0d4\":{\"lock\":false,\"pos\":{\"x\":30.7668209075928,\"y\":1.49510383605957,\"z\":19.6121349334717},\"rot\":{\"x\":-9.87307799960035E-08,\"y\":270.004577636719,\"z\":-1.6931063555603E-06}},\"bf9817\":{\"lock\":false,\"pos\":{\"x\":30.7668056488037,\"y\":1.49510383605957,\"z\":26.5119724273682},\"rot\":{\"x\":-1.34796437123441E-07,\"y\":269.983062744141,\"z\":-1.66636232279416E-06}},\"c24c0f\":{\"lock\":false,\"pos\":{\"x\":20.2495937347412,\"y\":1.49510383605957,\"z\":-7.70246076583862},\"rot\":{\"x\":-1.98183673916219E-08,\"y\":270.021087646484,\"z\":-3.96201613739322E-07}},\"c27ee4\":{\"lock\":false,\"pos\":{\"x\":47.0866966247559,\"y\":1.49510383605957,\"z\":28.8000774383545},\"rot\":{\"x\":-3.08983516106309E-07,\"y\":269.986755371094,\"z\":-1.42305111694441E-06}},\"c6629b\":{\"lock\":false,\"pos\":{\"x\":47.0866851806641,\"y\":1.49510383605957,\"z\":10.4000835418701},\"rot\":{\"x\":-1.78399091055326E-07,\"y\":270.005981445313,\"z\":-3.62586654034658E-08}},\"cc9f3e\":{\"lock\":false,\"pos\":{\"x\":47.086669921875,\"y\":1.49510383605957,\"z\":24.2000637054443},\"rot\":{\"x\":-6.77103102475485E-08,\"y\":269.985656738281,\"z\":-2.64707779251694E-07}},\"ccd2d7\":{\"lock\":false,\"pos\":{\"x\":23.4825458526611,\"y\":1.49510383605957,\"z\":26.5120220184326},\"rot\":{\"x\":-2.40093982029066E-07,\"y\":269.995025634766,\"z\":-1.41458906455227E-06}},\"d5060d\":{\"lock\":false,\"pos\":{\"x\":27.1277561187744,\"y\":1.49510383605957,\"z\":5.81215715408325},\"rot\":{\"x\":3.66555994446571E-08,\"y\":270.008361816406,\"z\":-3.20467137271407E-07}},\"d5a551\":{\"lock\":false,\"pos\":{\"x\":52.2421379089355,\"y\":1.49510383605957,\"z\":8.0495433807373},\"rot\":{\"x\":-1.9507253057327E-07,\"y\":270.005828857422,\"z\":-1.42986277751334E-06}},\"d7edae\":{\"lock\":false,\"pos\":{\"x\":80.106575012207,\"y\":1.16996240615845,\"z\":-31.8225593566895},\"rot\":{\"x\":2.03620402317028E-06,\"y\":270.003967285156,\"z\":-4.8903848437476E-07}},\"d92dde\":{\"lock\":false,\"pos\":{\"x\":34.4325218200684,\"y\":1.49510383605957,\"z\":26.5004138946533},\"rot\":{\"x\":-1.45011416208263E-08,\"y\":269.992370605469,\"z\":-4.0525972622163E-07}},\"dc8ab9\":{\"lock\":false,\"pos\":{\"x\":23.4825267791748,\"y\":1.49510383605957,\"z\":10.4118175506592},\"rot\":{\"x\":4.16389127622097E-08,\"y\":270.006256103516,\"z\":-1.40959414807185E-07}},\"dd5a8d\":{\"lock\":false,\"pos\":{\"x\":23.4825420379639,\"y\":1.49510383605957,\"z\":24.2120189666748},\"rot\":{\"x\":-3.93296701872714E-08,\"y\":269.983062744141,\"z\":-1.54590873080451E-06}},\"e10da6\":{\"lock\":false,\"pos\":{\"x\":30.766809463501,\"y\":1.49510383605957,\"z\":-1.08788371086121},\"rot\":{\"x\":-8.92096494453654E-08,\"y\":270.002624511719,\"z\":-6.296251058302E-07}},\"e4fc98\":{\"lock\":false,\"pos\":{\"x\":27.1277675628662,\"y\":1.49510383605957,\"z\":24.2120876312256},\"rot\":{\"x\":6.88144163873972E-09,\"y\":269.988098144531,\"z\":-1.13542306223735E-07}},\"e5bd5d\":{\"lock\":false,\"pos\":{\"x\":43.4209632873535,\"y\":1.49510383605957,\"z\":10.4116344451904},\"rot\":{\"x\":-1.61757597538781E-07,\"y\":270.005950927734,\"z\":-1.56916080129577E-08}},\"e618ab\":{\"lock\":false,\"pos\":{\"x\":30.7668113708496,\"y\":1.49510383605957,\"z\":1.21211957931519},\"rot\":{\"x\":4.9723274742064E-07,\"y\":270.002563476563,\"z\":-2.64069115019083E-07}},\"e7c879\":{\"lock\":false,\"pos\":{\"x\":43.4209632873535,\"y\":1.49510383605957,\"z\":8.11172294616699},\"rot\":{\"x\":-1.05802234884322E-06,\"y\":270.006103515625,\"z\":-1.30375397588978E-07}},\"e969d6\":{\"lock\":false,\"pos\":{\"x\":30.7668056488037,\"y\":1.49510383605957,\"z\":24.2119731903076},\"rot\":{\"x\":-4.85512181569447E-08,\"y\":269.991333007813,\"z\":-4.01975285058143E-07}},\"ed565f\":{\"lock\":false,\"pos\":{\"x\":47.0867118835449,\"y\":1.49510383605957,\"z\":-1.09985435009003},\"rot\":{\"x\":-1.77332459827539E-08,\"y\":270.002410888672,\"z\":-5.19741035986954E-07}},\"ef4d67\":{\"lock\":false,\"pos\":{\"x\":27.1277523040771,\"y\":1.49510383605957,\"z\":28.8120822906494},\"rot\":{\"x\":-1.79864485971848E-07,\"y\":269.982971191406,\"z\":-1.54573513100331E-06}},\"f328e1\":{\"lock\":false,\"pos\":{\"x\":47.0866966247559,\"y\":1.49510383605957,\"z\":35.700798034668},\"rot\":{\"x\":-1.44728161899366E-07,\"y\":270.004577636719,\"z\":-1.55116538280708E-06}},\"f883a7\":{\"lock\":false,\"pos\":{\"x\":34.4325408935547,\"y\":1.49510383605957,\"z\":19.6005764007568},\"rot\":{\"x\":-7.77135227281178E-08,\"y\":270.006072998047,\"z\":-1.72705608747492E-06}},\"f8e834\":{\"lock\":false,\"pos\":{\"x\":30.7668056488037,\"y\":1.49510383605957,\"z\":28.811975479126},\"rot\":{\"x\":1.39229543449915E-08,\"y\":269.980010986328,\"z\":-2.4950801957857E-07}},\"f9302c\":{\"lock\":false,\"pos\":{\"x\":34.440975189209,\"y\":1.49510383605957,\"z\":-7.74337768554688},\"rot\":{\"x\":7.9320926715809E-07,\"y\":269.988403320313,\"z\":3.6135295999884E-07}},\"f93232\":{\"lock\":false,\"pos\":{\"x\":23.4825305938721,\"y\":1.49510383605957,\"z\":1.21195149421692},\"rot\":{\"x\":1.37717989900921E-07,\"y\":270.003967285156,\"z\":3.86364177984433E-07}},\"fa6c1a\":{\"lock\":false,\"pos\":{\"x\":30.8967304229736,\"y\":1.49510383605957,\"z\":-7.73136854171753},\"rot\":{\"x\":-1.45768126458279E-07,\"y\":269.970367431641,\"z\":-1.62071739850944E-06}},\"faed96\":{\"lock\":false,\"pos\":{\"x\":30.7668209075928,\"y\":1.49510383605957,\"z\":38.0119934082031},\"rot\":{\"x\":-1.01386007145265E-07,\"y\":270.007690429688,\"z\":-2.862549308702E-07}},\"fde4dd\":{\"lock\":false,\"pos\":{\"x\":47.0866928100586,\"y\":1.49510383605957,\"z\":17.3002147674561},\"rot\":{\"x\":-1.84464184371791E-07,\"y\":270.005981445313,\"z\":-1.5133857687033E-06}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "02c883", "Name": "CardCustom", "Transform": { "posX": 27.1277561, "posY": 1.49510384, "posZ": 1.21214986, "rotX": -1.44888745E-07, "rotY": 270.003662, "rotZ": 5.11338065E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Meat Cleaver (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604300, "SidewaysCard": false, "CustomDeck": { "6043": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613935601/B372333140FAC540C9543AF5051103F6A941DD7C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "02fc01", "Name": "CardCustom", "Transform": { "posX": 34.4325333, "posY": 1.49510384, "posZ": 10.4004345, "rotX": -6.133022E-08, "rotY": 270.0061, "rotZ": -3.95373036E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Astronomical Atlas (1)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 611600, "SidewaysCard": false, "CustomDeck": { "6116": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614101617/24C5D874B85C25DC55E0B504BCB0EB76CDBF6F74/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "04b54a", "Name": "CardCustom", "Transform": { "posX": 27.1277752, "posY": 1.49510384, "posZ": -1.08783031, "rotX": 2.50056644E-07, "rotY": 270.0032, "rotZ": 1.755076E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Old Keyring (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604600, "SidewaysCard": false, "CustomDeck": { "6046": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613937684/E30C0122830910B7A3028DAA76CBA5F6E14D8090/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "099880", "Name": "CardCustom", "Transform": { "posX": 47.0866737, "posY": 1.49510384, "posZ": 33.40007, "rotX": -1.05166777E-07, "rotY": 270.017944, "rotZ": 3.15948547E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ambush (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606900, "SidewaysCard": false, "CustomDeck": { "6069": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613980597/1465CFBC958BDF7507624AC951028FD8DC6035CD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0a5bc6", "Name": "CardCustom", "Transform": { "posX": 27.1277523, "posY": 1.49510384, "posZ": 38.0108566, "rotX": -2.07763222E-07, "rotY": 269.9732, "rotZ": -4.48473045E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Book of Psalms (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605100, "SidewaysCard": false, "CustomDeck": { "6051": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613963609/96217A404466B74777813096D6B4AE2F5F8B78FC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0d6af3", "Name": "CardCustom", "Transform": { "posX": 27.1277714, "posY": 1.49510384, "posZ": 10.4120464, "rotX": -1.27484441E-07, "rotY": 269.983765, "rotZ": -2.43027216E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Olive McBride (3)", "Description": "Will Try Anything Once", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 612500, "SidewaysCard": false, "CustomDeck": { "6125": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614109530/7BD98422AB98166BC4BFD258754FAEC50112DF75/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "10020b", "Name": "CardCustom", "Transform": { "posX": 34.43254, "posY": 1.49510384, "posZ": 33.4004364, "rotX": 1.13938562E-07, "rotY": 270.020142, "rotZ": -3.216248E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Painkillers (1)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606100, "SidewaysCard": false, "CustomDeck": { "6061": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613972564/FDFB91E74A2BF75705821988DB2E4512F5B10784/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "19633b", "Name": "CardCustom", "Transform": { "posX": 52.2421761, "posY": 1.49510384, "posZ": -1.15047526, "rotX": -5.654263E-09, "rotY": 270.003357, "rotZ": -2.91820925E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Predestined (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604700, "SidewaysCard": false, "CustomDeck": { "6047": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613938423/F30A820BC080DD25E8F30F94AB68557348F6ED47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1dae6f", "Name": "CardCustom", "Transform": { "posX": 43.42096, "posY": 1.49510384, "posZ": -1.08824229, "rotX": 2.84412653E-08, "rotY": 270.003357, "rotZ": -1.78439322E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "A Chance Encounter (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 613300, "SidewaysCard": false, "CustomDeck": { "6133": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616783667/07E5F4FB9F07BF179004B8101EBC822D744C992E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1f94f7", "Name": "CardCustom", "Transform": { "posX": 47.0866928, "posY": 1.49510384, "posZ": 38.00007, "rotX": 2.34256376E-07, "rotY": 270.008423, "rotZ": -1.74573955E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Emergency Aid (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605300, "SidewaysCard": false, "CustomDeck": { "6053": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613965647/1F8C9CBA5224D4599188FC74AE19B1B501C1858C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "267a1b", "Name": "CardCustom", "Transform": { "posX": 47.08669, "posY": 1.49510384, "posZ": 15.0002041, "rotX": 2.08038138E-08, "rotY": 270.005829, "rotZ": -1.09284372E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Breaking and Entering (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 609400, "SidewaysCard": false, "CustomDeck": { "6094": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614051217/07AA27BFF2B2C69A07B62F2BAF984A58030D2545/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "268843", "Name": "Custom_Model", "Transform": { "posX": 80.106575, "posY": 1.16996253, "posZ": -31.0283184, "rotX": 3.97179122E-07, "rotY": 270.003662, "rotZ": 6.417276E-07, "scaleX": 0.250000358, "scaleY": 0.250000358, "scaleZ": 0.250000358 }, "Nickname": "Rabbit Hole Data Helper", "Description": "Include this for spawning the correct tokens for Rabbit Hole Expansion", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.09555679, "g": 0.8066202, "b": 0.172213942 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/", "NormalURL": "", "ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/", "Convex": true, "MaterialIndex": 2, "TypeIndex": 0, "CustomShader": { "SpecularColor": { "r": 0.7222887, "g": 0.507659256, "b": 0.339915335 }, "SpecularIntensity": 0.4, "SpecularSharpness": 7.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for _ and if\r\nwe find nothing we look for \r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"San Francisco\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"\tArkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"\tLondon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rome\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Istanbul\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tokyo_123abc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tokyo_456efg\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Tokyo\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Shanghai_123\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"front\"},\r\n \"Sydney\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\r\n \"Ambush (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Book of Psalms (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Extra Ammunition (4)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"M1918 BAR (5)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 8\r\n},\r\n \"Mk 1 Grenades (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n},\n \"Painkillers (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\n \".35 Winchester (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 5\r\n},\r\n \"Venturer (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Archaic Glyphs (3):Eldtown Shards\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Cryptographic Cipher (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Farsight (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n},\r\n \"Fingerprint Kit (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \".25 Automatic (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Fence (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n},\r\n \"Forbidden Knowledge (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Grimm's Fairy Tale (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Old Keyring (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Stray Cat (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 9\r\n},\r\n \"Baseball Bat (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n}\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\r\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\r\n local dataHelper = getObjectFromGUID('708279')\r\n dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend\r\n", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "269ab3", "Name": "CardCustom", "Transform": { "posX": 23.482542, "posY": 1.49510384, "posZ": 17.311964, "rotX": -1.03071987E-08, "rotY": 270.006073, "rotZ": -4.012655E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Skeleton Key (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 610900, "SidewaysCard": false, "CustomDeck": { "6109": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614064724/276C19375C2048C986682DA1DC5905F2E8A1C9F2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2be496", "Name": "CardCustom", "Transform": { "posX": 43.42096, "posY": 1.49510384, "posZ": 19.6117535, "rotX": -1.05909947E-08, "rotY": 270.005859, "rotZ": 2.0210825E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cheat Death (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 609600, "SidewaysCard": false, "CustomDeck": { "6096": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614053542/3CD00F33296F95F732DF38B0F2B9B66F0D198923/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2cb6e7", "Name": "CardCustom", "Transform": { "posX": 27.1120815, "posY": 1.49510384, "posZ": -3.37727427, "rotX": -5.24535828E-08, "rotY": 270.004028, "rotZ": -3.992247E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Stray Cat (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604800, "SidewaysCard": false, "CustomDeck": { "6048": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613939355/293C53CE51A19FD9E04F6BB717DAA1AB04F58391/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2f3aba", "Name": "CardCustom", "Transform": { "posX": 27.1277523, "posY": 1.49510384, "posZ": 8.112112, "rotX": -8.460765E-07, "rotY": 270.006165, "rotZ": -5.30325E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Spirit Athame (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 613900, "SidewaysCard": false, "CustomDeck": { "6139": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616803599/40C5789DB48A1C637A3B8FD480B1113A70A2689A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "337650", "Name": "CardCustom", "Transform": { "posX": 43.42096, "posY": 1.49510384, "posZ": 1.21176064, "rotX": -2.86743553E-08, "rotY": 270.003174, "rotZ": -9.673729E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Keep Faith (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 603900, "SidewaysCard": false, "CustomDeck": { "6039": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613932363/7A3DACFD598E408D45EF5A933CF54D22DA74B738/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "33eb6e", "Name": "CardCustom", "Transform": { "posX": 43.4209557, "posY": 1.49510384, "posZ": 35.7116, "rotX": 4.24811546E-08, "rotY": 270.007263, "rotZ": -2.102624E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Extra Ammunition (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605400, "SidewaysCard": false, "CustomDeck": { "6054": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613966412/9EBECA346422AFF8DC9856F12DB759337BD5A16D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "340ad1", "Name": "CardCustom", "Transform": { "posX": 43.4209557, "posY": 1.49510384, "posZ": 38.0116272, "rotX": -6.35948751E-08, "rotY": 270.006958, "rotZ": -9.02672E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Galvanize (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605500, "SidewaysCard": false, "CustomDeck": { "6055": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613967359/B4215942772E12A062BDD650281EA92B477222C0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "349045", "Name": "CardCustom", "Transform": { "posX": 23.4825459, "posY": 1.49510384, "posZ": 8.111929, "rotX": -9.068424E-07, "rotY": 270.006348, "rotZ": -5.283794E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Nkosi Mabati (5)", "Description": "Enigmatic Warlock", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 612400, "SidewaysCard": false, "CustomDeck": { "6124": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614108733/9AD7813204EC336FFDF3AF94F808254337D54C98/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3752df", "Name": "CardCustom", "Transform": { "posX": 47.0866928, "posY": 1.49510384, "posZ": 5.800179, "rotX": -1.326791E-07, "rotY": 270.0048, "rotZ": 1.82165749E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Uncage the Soul (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 613200, "SidewaysCard": false, "CustomDeck": { "6132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614116234/2161164B79C8CE165C64D0E0322B0E6F68D9A460/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3d228c", "Name": "CardCustom", "Transform": { "posX": 34.43258, "posY": 1.49510384, "posZ": -1.09947264, "rotX": 3.974476E-08, "rotY": 270.0033, "rotZ": -4.64161E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Knife (1)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604000, "SidewaysCard": false, "CustomDeck": { "6040": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613933089/F5FE6A4E136DA899B4305E1A63049224D9096D41/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3d5eba", "Name": "CardCustom", "Transform": { "posX": 27.1277714, "posY": 1.49510384, "posZ": 15.0121593, "rotX": -7.47481153E-08, "rotY": 269.995178, "rotZ": -3.82009944E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Priest of Two-Faiths (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 610800, "SidewaysCard": false, "CustomDeck": { "6108": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614063779/C019C3FDFDE4A780B037F6D3040F0EAA17D4FC7B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3e7287", "Name": "CardCustom", "Transform": { "posX": 27.1277714, "posY": 1.49510384, "posZ": 17.3121624, "rotX": 5.36450173E-09, "rotY": 269.9887, "rotZ": -4.37434522E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fence (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 611300, "SidewaysCard": false, "CustomDeck": { "6113": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614067913/2AED561FB749EC9F317B03C2B121CA64807BF21A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3f0180", "Name": "CardCustom", "Transform": { "posX": 23.482523, "posY": 1.49510384, "posZ": 35.7107849, "rotX": -1.55471454E-07, "rotY": 269.999725, "rotZ": -1.63006092E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Something Worth Fighting For (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 616200, "SidewaysCard": false, "CustomDeck": { "6162": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1841412363650088739/22681755B74FF15838B5A399E485AEA6647102E7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "412cf1", "Name": "CardCustom", "Transform": { "posX": 43.42096, "posY": 1.49510384, "posZ": 24.2116222, "rotX": -1.14262548E-07, "rotY": 269.9897, "rotZ": 1.89000353E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Practice Makes Perfect (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 608400, "SidewaysCard": false, "CustomDeck": { "6084": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613994225/DBEAEEF5BD5A5A65535B2FBB67C685A2F514C005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "41ee84", "Name": "CardCustom", "Transform": { "posX": 30.7668247, "posY": 1.49510384, "posZ": 5.81214952, "rotX": 2.65758882E-09, "rotY": 270.0067, "rotZ": -1.90755244E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Arcane Research (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 613400, "SidewaysCard": false, "CustomDeck": { "6134": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614117928/4965BC0ECF5B458CEC865546C36FE10FE6075F15/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "43ad41", "Name": "CardCustom", "Transform": { "posX": 47.0866051, "posY": 1.49510384, "posZ": 1.200187, "rotX": 4.85713958E-09, "rotY": 270.003571, "rotZ": -3.25884059E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Nothing Left to Lose (0)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604500, "SidewaysCard": false, "CustomDeck": { "6045": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613937044/9EAEFFBF1495A02082823EDE95F9A4EDA98990A6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "43c2c3", "Name": "CardCustom", "Transform": { "posX": 47.0866928, "posY": 1.49510384, "posZ": 19.6002178, "rotX": -2.607777E-07, "rotY": 270.00592, "rotZ": -1.88950224E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Faustian Bargain (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 609800, "SidewaysCard": false, "CustomDeck": { "6098": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614055041/D97D78AEDCB06FC9D7BC774E1644C2F91C5E5BAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "459f81", "Name": "CardCustom", "Transform": { "posX": 39.7819366, "posY": 1.49510384, "posZ": 10.4116955, "rotX": -1.24507773E-08, "rotY": 270.006439, "rotZ": -5.272055E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Storm of Spirits (5)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 613100, "SidewaysCard": false, "CustomDeck": { "6131": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614115170/E988D5C9ABCC868DA6CD7D8CFE1ABAE11EFB2710/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4634ae", "Name": "CardCustom", "Transform": { "posX": 34.4167442, "posY": 1.49510384, "posZ": -3.38893962, "rotX": 3.361286E-07, "rotY": 270.0032, "rotZ": 2.72895289E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Baseball Bat (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 603300, "SidewaysCard": false, "CustomDeck": { "6033": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613926883/2ACAF9F33B498BB68053228D6870B00A5E282699/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "465927", "Name": "CardCustom", "Transform": { "posX": 43.42098, "posY": 1.49510384, "posZ": 26.5116367, "rotX": -2.4092293E-07, "rotY": 270.0058, "rotZ": 1.68215976E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Connect the Dots (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 607600, "SidewaysCard": false, "CustomDeck": { "6076": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613986581/12BA11606944424D0AA5E64581B1259040DBEBD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "473c08", "Name": "CardCustom", "Transform": { "posX": 47.0866928, "posY": 1.49510384, "posZ": 8.10018, "rotX": -1.83139875E-07, "rotY": 270.005859, "rotZ": -1.27774229E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Spectral Razor (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 614000, "SidewaysCard": false, "CustomDeck": { "6140": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616804941/9ABBAEBC8F9121B9B5B6B1DAF832D60105830CE7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "48009b", "Name": "CardCustom", "Transform": { "posX": 39.7819366, "posY": 1.49510384, "posZ": -1.08817363, "rotX": -2.033629E-07, "rotY": 270.0031, "rotZ": -2.270413E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fight or Flight (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 603500, "SidewaysCard": false, "CustomDeck": { "6035": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613928419/9E5AF56A8FF3A11C0535E063EDACBE51C1685045/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "487284", "Name": "CardCustom", "Transform": { "posX": 30.7511177, "posY": 1.49510384, "posZ": -3.377335, "rotX": 5.080576E-08, "rotY": 270.003, "rotZ": -1.53374131E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mariner's Compass (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604200, "SidewaysCard": false, "CustomDeck": { "6042": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613934868/E085725E8BB484E9E659D8217F3430E8052DBD6B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4b6428", "Name": "CardCustom", "Transform": { "posX": 52.2421341, "posY": 1.49510384, "posZ": 19.54959, "rotX": -2.75232026E-07, "rotY": 270.0058, "rotZ": -1.0564866E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Daredevil (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 609700, "SidewaysCard": false, "CustomDeck": { "6097": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614054330/992E95155B1D431D178B32091B5D540AF2955075/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4c0584", "Name": "CardCustom", "Transform": { "posX": 27.3436451, "posY": 1.49510384, "posZ": -7.743377, "rotX": -1.59182633E-07, "rotY": 269.9759, "rotZ": -3.73382932E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pack Leader (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 614800, "SidewaysCard": false, "CustomDeck": { "6148": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616900383/1530BA1DF588E43C1E64A1BB01CC5D23A4559876/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4d182c", "Name": "CardCustom", "Transform": { "posX": 52.24204, "posY": 1.49510384, "posZ": 1.149543, "rotX": -1.59279423E-07, "rotY": 270.002777, "rotZ": 3.40717818E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "\"Not without a fight!\" (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604400, "SidewaysCard": false, "CustomDeck": { "6044": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613936234/E990E717AF762850706656FEA05804C2D2F365CA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4d5596", "Name": "CardCustom", "Transform": { "posX": 52.2421379, "posY": 1.49510384, "posZ": 10.3494473, "rotX": 1.00116914E-07, "rotY": 270.004761, "rotZ": -4.923894E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Seal of the Elder Sign (0)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 612800, "SidewaysCard": false, "CustomDeck": { "6128": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614112425/83356BDE68200FD21DFED83A3BA57DC84AD63E8A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4f1c7e", "Name": "CardCustom", "Transform": { "posX": 27.1277714, "posY": 1.49510384, "posZ": 19.6121655, "rotX": -4.097193E-08, "rotY": 270.0061, "rotZ": -2.89315267E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cat Burglar (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 609500, "SidewaysCard": false, "CustomDeck": { "6095": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614052439/74AB4DC98E0E82F15293C481BE8C17C42DF59C2B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5cbb02", "Name": "CardCustom", "Transform": { "posX": 52.24215, "posY": 1.49510384, "posZ": 28.7494488, "rotX": 3.790387E-08, "rotY": 270.005554, "rotZ": -1.231039E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Eye of Truth (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 608700, "SidewaysCard": false, "CustomDeck": { "6087": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613997211/93F2DBB30C8B98BBE974008B27BC2019204EC380/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5ccbc7", "Name": "CardCustom", "Transform": { "posX": 27.1277523, "posY": 1.49510384, "posZ": 26.51208, "rotX": -7.68340342E-08, "rotY": 270.005981, "rotZ": -2.761507E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Archaic Glyphs (3)", "Description": "Eltdown Shards", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 613600, "SidewaysCard": false, "CustomDeck": { "6136": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616792927/9AFEFB6B482993213D37E14938F41F0476CEA001/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5db5fb", "Name": "CardCustom", "Transform": { "posX": 52.2421379, "posY": 1.49510384, "posZ": 37.94944, "rotX": 1.40680669E-07, "rotY": 269.99234, "rotZ": -7.109315E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Inspiring Presence (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 616000, "SidewaysCard": false, "CustomDeck": { "6160": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022620942907/0954CD38AC8DDDC88EDC802346BAB9DF05AC390D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5ff300", "Name": "CardCustom", "Transform": { "posX": 39.7819366, "posY": 1.49510384, "posZ": 1.21182179, "rotX": 2.35688319E-07, "rotY": 270.002838, "rotZ": 4.67822669E-09, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Waylay (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604900, "SidewaysCard": false, "CustomDeck": { "6049": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613940082/EBB45E913CDE11A38529A8B4338E12CAD7405B3F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "639ceb", "Name": "CardCustom", "Transform": { "posX": 30.7668056, "posY": 1.49510384, "posZ": 8.112082, "rotX": -2.01343013E-07, "rotY": 270.005432, "rotZ": -1.22002945E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alyssa Graham (3)", "Description": "Speaker to the Dead", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 614100, "SidewaysCard": false, "CustomDeck": { "6141": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614117138/E31ACF60433DA485685E4EBC3CDEEC9311C3C8B1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "68fe73", "Name": "CardCustom", "Transform": { "posX": 43.42096, "posY": 1.49510384, "posZ": 17.31175, "rotX": 2.37421744E-07, "rotY": 270.005981, "rotZ": -5.53576342E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Followed (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 610000, "SidewaysCard": false, "CustomDeck": { "6100": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614056930/7ED46A26AD8A2D3924175DCBEFD8575C22847D8B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6bbf22", "Name": "CardCustom", "Transform": { "posX": 34.43252, "posY": 1.49510384, "posZ": 17.30055, "rotX": 6.689169E-08, "rotY": 270.006042, "rotZ": -1.16226753E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Leather Jacket (1)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 610300, "SidewaysCard": false, "CustomDeck": { "6103": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614059847/55696AD278437E6B16788EE75F96568078A08396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "70235c", "Name": "CardCustom", "Transform": { "posX": 23.48254, "posY": 1.49510384, "posZ": 33.4107971, "rotX": -3.602139E-08, "rotY": 270.010925, "rotZ": -2.11820375E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "M1918 BAR (5)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605900, "SidewaysCard": false, "CustomDeck": { "6059": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613970671/E11709AD02940EBC9A5471246995248B81BCFBB3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "75f24b", "Name": "CardCustom", "Transform": { "posX": 52.2421379, "posY": 1.49510384, "posZ": 35.6494522, "rotX": -8.627231E-08, "rotY": 270.007874, "rotZ": -1.069309E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Intrepid (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605800, "SidewaysCard": false, "CustomDeck": { "6058": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613969719/296ECB838C6DD3AFF9E12E4B6E2DB2FB76186F96/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "788f24", "Name": "CardCustom", "Transform": { "posX": 34.43243, "posY": 1.49510384, "posZ": 1.20052266, "rotX": -1.47042158E-07, "rotY": 270.002777, "rotZ": -1.18456107E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fire Axe (1)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 603600, "SidewaysCard": false, "CustomDeck": { "6036": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613929951/D1487B26411998647DEFF6D27FF8E12F8ECB14C3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7cb35b", "Name": "CardCustom", "Transform": { "posX": 34.432518, "posY": 1.49510384, "posZ": 5.8005147, "rotX": 7.741619E-08, "rotY": 270.006653, "rotZ": -5.99311036E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Forbidden Knowledge (1)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 612300, "SidewaysCard": false, "CustomDeck": { "6123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614107799/6625D0B9538CDAF2B6627F37EAB8DC1D805BE57C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7d5da5", "Name": "CardCustom", "Transform": { "posX": 30.7668228, "posY": 1.49510384, "posZ": 10.4120159, "rotX": -1.4905433E-07, "rotY": 270.0063, "rotZ": -5.089651E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scroll of Prophecies (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 612700, "SidewaysCard": false, "CustomDeck": { "6127": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614111372/41834E1619BF032F544BA4D7AE53DDA2C438D964/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7ea4af", "Name": "CardCustom", "Transform": { "posX": 27.1277676, "posY": 1.49510384, "posZ": 35.71087, "rotX": -7.295317E-08, "rotY": 269.990662, "rotZ": -3.46034454E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Relentless (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606500, "SidewaysCard": false, "CustomDeck": { "6065": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613976146/0E424D26FE5422687CD262CC46D1CA33E01C826A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7f2a9e", "Name": "CardCustom", "Transform": { "posX": 27.1277523, "posY": 1.49510384, "posZ": 33.41086, "rotX": -9.20840151E-08, "rotY": 270.007751, "rotZ": -2.18885035E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tetsuo Mori (2)", "Description": "Too Noble for His Own Good", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606700, "SidewaysCard": false, "CustomDeck": { "6067": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613978033/BCFE099D6042CEA9D95EBEC906D7C5E77EBEF538/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7fd726", "Name": "CardCustom", "Transform": { "posX": 47.0866928, "posY": 1.49510384, "posZ": 26.5000744, "rotX": -2.27144071E-07, "rotY": 270.005737, "rotZ": -2.98003357E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Deep Knowledge (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 607800, "SidewaysCard": false, "CustomDeck": { "6078": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613988221/A72A178F04EFE4623FAA84677502F6549111B817/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "886a80", "Name": "CardCustom", "Transform": { "posX": 34.4325371, "posY": 1.49510384, "posZ": 8.100531, "rotX": 4.03707247E-07, "rotY": 270.006165, "rotZ": 1.15952571E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Familiar Spirit (1)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 612200, "SidewaysCard": false, "CustomDeck": { "6122": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614598543/D36D53FB820AB9D63D34D923302150824D1B24DA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8b4374", "Name": "CardCustom", "Transform": { "posX": 30.7668247, "posY": 1.49510384, "posZ": 15.0121212, "rotX": -4.44591564E-08, "rotY": 270.011353, "rotZ": -3.97966545E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": ".25 Automatic (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 611400, "SidewaysCard": false, "CustomDeck": { "6114": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614095948/FE393317C4075CB8F21B30AA1660078179C9C9B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8b8aa1", "Name": "CardCustom", "Transform": { "posX": 23.4825439, "posY": 1.49510384, "posZ": 15.0119534, "rotX": -9.657093E-08, "rotY": 270.0062, "rotZ": -3.23959E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Leo de Luca (5)", "Description": "The Louisiana Lion", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 610400, "SidewaysCard": false, "CustomDeck": { "6104": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614060564/D05842831E11A16B357F23AF1AA3A4C6D2445B8B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "911810", "Name": "CardCustom", "Transform": { "posX": 47.07091, "posY": 1.49510384, "posZ": -3.38927555, "rotX": 1.06006333E-07, "rotY": 270.002655, "rotZ": -3.852399E-09, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grit Your Teeth (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 603800, "SidewaysCard": false, "CustomDeck": { "6038": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613931536/CFEFB0B03C782738E2D9583FF57B414622DD5ADA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "97fcaf", "Name": "CardCustom", "Transform": { "posX": 34.4325333, "posY": 1.49510384, "posZ": 15.0005627, "rotX": -5.40427827E-08, "rotY": 270.00058, "rotZ": -2.04447417E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Adaptable (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 609200, "SidewaysCard": false, "CustomDeck": { "6092": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614049613/F96C22B5C154130868F6BBBEEFB968AF8BA8CF21/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "98fdce", "Name": "CardCustom", "Transform": { "posX": 34.4326, "posY": 1.49510384, "posZ": 38.00451, "rotX": -3.28512364E-08, "rotY": 269.987244, "rotZ": -1.05600051E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mk 1 Grenades (0)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606000, "SidewaysCard": false, "CustomDeck": { "6060": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613971481/4D46722169829038410F7092E7649B0805BA4FBD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9c599b", "Name": "CardCustom", "Transform": { "posX": 23.7889118, "posY": 1.49510384, "posZ": -7.74339247, "rotX": -2.67482818E-07, "rotY": 269.985077, "rotZ": 3.68517533E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Red-Gloved Man (2)", "Description": "He Was Never Here", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 616300, "SidewaysCard": false, "CustomDeck": { "6163": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1841412363650089714/A3F164149922A3AEA0F9E3C1617A800890E41195/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9d3cb8", "Name": "CardCustom", "Transform": { "posX": 34.43249, "posY": 1.49510384, "posZ": 35.70761, "rotX": -2.2937849E-08, "rotY": 270.031036, "rotZ": -1.73939156E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Police Badge (0)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606200, "SidewaysCard": false, "CustomDeck": { "6062": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613973411/DD155F667F2363D4D56BC3C618BF6995105656EF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9d50cf", "Name": "CardCustom", "Transform": { "posX": 30.76682, "posY": 1.49510384, "posZ": 17.3121319, "rotX": 5.66247138E-08, "rotY": 270.004578, "rotZ": 9.535357E-09, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Trench Knife (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 611000, "SidewaysCard": false, "CustomDeck": { "6110": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614065528/69C396BC1200CC488DCD25146C1EA7FB609BBB48/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9f71b2", "Name": "CardCustom", "Transform": { "posX": 43.4209747, "posY": 1.49510384, "posZ": 33.41165, "rotX": -6.071696E-08, "rotY": 270.020416, "rotZ": -1.96163214E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Radiant Smite (5)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606400, "SidewaysCard": false, "CustomDeck": { "6064": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613975161/33BFCA2843F1C73AFFDCC22D75CAEC0859C0CB1D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9facb8", "Name": "CardCustom", "Transform": { "posX": 43.4209824, "posY": 1.49510384, "posZ": 5.811791, "rotX": -1.22140619E-07, "rotY": 270.0061, "rotZ": -1.8185257E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Drawn to the Flame (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 612000, "SidewaysCard": false, "CustomDeck": { "6120": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614105014/B332D61A368DEADE21E180877FFAD778D0FD2FCA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9feaf2", "Name": "CardCustom", "Transform": { "posX": 23.482542, "posY": 1.49510384, "posZ": 38.0107956, "rotX": -7.165232E-08, "rotY": 270.008148, "rotZ": -2.11256008E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Brother Xavier (3)", "Description": "Pure of Spirit", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605200, "SidewaysCard": false, "CustomDeck": { "6052": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613964931/F4AA5CC382BF09416AF87CC1AD5E866C7958E799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a46c2b", "Name": "CardCustom", "Transform": { "posX": 23.482542, "posY": 1.49510384, "posZ": 28.8120213, "rotX": -4.133057E-08, "rotY": 270.006042, "rotZ": -3.41583274E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fingerprint Kit (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 613700, "SidewaysCard": false, "CustomDeck": { "6137": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616798253/6B1C7D49278324E77251EB504BB91C7A89D79152/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a6306e", "Name": "CardCustom", "Transform": { "posX": 43.42098, "posY": 1.49510384, "posZ": 28.81164, "rotX": -2.12764348E-07, "rotY": 270.005768, "rotZ": -2.16858229E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guidance (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 608200, "SidewaysCard": false, "CustomDeck": { "6082": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613991829/93E2B2975AEFACB672FCAFA5CF43187C1A7A4119/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a8db40", "Name": "CardCustom", "Transform": { "posX": 39.7819328, "posY": 1.49510384, "posZ": 28.8117428, "rotX": -2.450979E-07, "rotY": 270.0058, "rotZ": 1.75117378E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gaze of Ouraxsh (5)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 608100, "SidewaysCard": false, "CustomDeck": { "6081": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613991005/F40B4219EFED628E727B357FEECB8732558427B5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a9a0c8", "Name": "CardCustom", "Transform": { "posX": 43.4052734, "posY": 1.49510384, "posZ": -3.37769413, "rotX": -1.11906495E-07, "rotY": 270.0026, "rotZ": 1.46604961E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "A Glimmer of Hope (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 603200, "SidewaysCard": false, "CustomDeck": { "6032": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613926061/5791DE48418C6517B2BC11A3777A810BC3656AB2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ad0691", "Name": "CardCustom", "Transform": { "posX": 34.4325256, "posY": 1.49510384, "posZ": 28.80042, "rotX": -1.88129988E-07, "rotY": 270.00592, "rotZ": -2.43255926E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Farsight (0)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 607900, "SidewaysCard": false, "CustomDeck": { "6079": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613988973/C55555D1B5A4C2D10CD1597A48FE736A921C9054/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ad95fd", "Name": "CardCustom", "Transform": { "posX": 30.7668228, "posY": 1.49510384, "posZ": 35.7119675, "rotX": -2.22387058E-07, "rotY": 269.972717, "rotZ": 2.5517798E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Handcuffs (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 614200, "SidewaysCard": false, "CustomDeck": { "6142": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616788168/409A9875B40E0959725E028E52050063732A0253/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b0dd94", "Name": "CardCustom", "Transform": { "posX": 34.4325371, "posY": 1.49510384, "posZ": 24.2004223, "rotX": -9.862964E-08, "rotY": 269.989624, "rotZ": -2.46203683E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dr. William T. Maleson (2)", "Description": "Working on Something Big", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 608900, "SidewaysCard": false, "CustomDeck": { "6089": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613999030/D022F917CF5418FE11E9C8DD990951CEB75754F6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b221a7", "Name": "CardCustom", "Transform": { "posX": 23.4825268, "posY": 1.49510384, "posZ": 19.6119442, "rotX": -6.42382E-08, "rotY": 270.0061, "rotZ": -3.81977685E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Investments (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 610100, "SidewaysCard": false, "CustomDeck": { "6101": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614057723/61F12CF3A000D8A439F1E1744C5647FA3949A4B5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b3d984", "Name": "CardCustom", "Transform": { "posX": 30.7668, "posY": 1.49510384, "posZ": 33.4119949, "rotX": -4.52562645E-08, "rotY": 270.016968, "rotZ": 1.63071931E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": ".35 Winchester (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 607000, "SidewaysCard": false, "CustomDeck": { "6070": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613981379/275D39C46428EDA0875B5CD22587F2E1FD93AEB2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b47adf", "Name": "CardCustom", "Transform": { "posX": 52.2421379, "posY": 1.49510384, "posZ": 17.2495861, "rotX": -1.817009E-07, "rotY": 269.975739, "rotZ": 1.05640332E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Opportunist (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 614300, "SidewaysCard": false, "CustomDeck": { "6143": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616778543/339C10054AD6976D38AC470F0A42F7BBF04E78A6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b826dd", "Name": "CardCustom", "Transform": { "posX": 43.42098, "posY": 1.49510384, "posZ": 15.0117626, "rotX": -5.256658E-08, "rotY": 270.0061, "rotZ": -4.01641159E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Black Market (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 609300, "SidewaysCard": false, "CustomDeck": { "6093": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614050346/3247C40FD6F3BADB4E01C336F1766BDB434490EB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bae0d4", "Name": "CardCustom", "Transform": { "posX": 30.76682, "posY": 1.49510384, "posZ": 19.6121349, "rotX": -1.53535815E-08, "rotY": 270.004578, "rotZ": -3.54118328E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Knuckleduster (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 614400, "SidewaysCard": false, "CustomDeck": { "6144": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616776944/4B3A0D1F20F3ADB3F370801A1C2D6AC347CD2DB5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bf9817", "Name": "CardCustom", "Transform": { "posX": 30.7668056, "posY": 1.49510384, "posZ": 26.5119724, "rotX": -8.212168E-08, "rotY": 269.983063, "rotZ": -4.59995277E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hawk-Eye Folding Camera (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 613800, "SidewaysCard": false, "CustomDeck": { "6138": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616799357/E1621EC600C82762AED6FF5C1E295D1CC91F45B3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c24c0f", "Name": "CardCustom", "Transform": { "posX": 20.2495937, "posY": 1.49510384, "posZ": -7.702461, "rotX": 2.53606434E-08, "rotY": 270.0211, "rotZ": -2.09477491E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Backpack (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 602600, "SidewaysCard": false, "CustomDeck": { "6026": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613916258/52A576F44C64F353B79EA50B42B5BAE256D1DA21/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c27ee4", "Name": "CardCustom", "Transform": { "posX": 47.0866966, "posY": 1.49510384, "posZ": 28.8000774, "rotX": -9.89281048E-08, "rotY": 269.986755, "rotZ": -1.96049527E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Astounding Revelation (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 613500, "SidewaysCard": false, "CustomDeck": { "6135": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616791770/51D08C4C9430F300FE24915EB2AC9F48AAEFFDD6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c6629b", "Name": "CardCustom", "Transform": { "posX": 47.0866852, "posY": 1.49510384, "posZ": 10.4000835, "rotX": -1.45790338E-07, "rotY": 270.005981, "rotZ": 2.612168E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Banish (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 614500, "SidewaysCard": false, "CustomDeck": { "6145": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616805998/32869FA4B7E06FA5C252C06949E880384ECD68C4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cc9f3e", "Name": "CardCustom", "Transform": { "posX": 47.08667, "posY": 1.49510384, "posZ": 24.2000637, "rotX": -1.38925074E-07, "rotY": 269.985657, "rotZ": 5.58796351E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Working a Hunch (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 608800, "SidewaysCard": false, "CustomDeck": { "6088": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613998306/87AEF09EEB8EC67A600449CA8A04D9F8CD041F07/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ccd2d7", "Name": "CardCustom", "Transform": { "posX": 23.4825459, "posY": 1.49510384, "posZ": 26.512022, "rotX": 4.79970375E-08, "rotY": 269.995026, "rotZ": -4.4449834E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ancient Stone (4)", "Description": "Promethean Potential", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 607100, "SidewaysCard": false, "CustomDeck": { "6071": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613982284/89FACC101CDF6B9500E9304275522F307B12139B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d5060d", "Name": "CardCustom", "Transform": { "posX": 27.1277561, "posY": 1.49510384, "posZ": 5.812157, "rotX": -5.207338E-08, "rotY": 270.008362, "rotZ": 9.029565E-09, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abyssal Tome (5)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 614700, "SidewaysCard": false, "CustomDeck": { "6147": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022620941476/F4030E0AA0105E419995FCD84003448249AC699D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d5a551", "Name": "CardCustom", "Transform": { "posX": 52.2421379, "posY": 1.49510384, "posZ": 8.049543, "rotX": -4.13215879E-08, "rotY": 270.005829, "rotZ": -3.1724565E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fearless (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 616100, "SidewaysCard": false, "CustomDeck": { "6161": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614107006/919A9D4A710FB962F28B19C6190CDB8704B24C9E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d7edae", "Name": "Custom_Model", "Transform": { "posX": 80.106575, "posY": 1.16996253, "posZ": -31.8225689, "rotX": 1.14233146E-07, "rotY": 270.003845, "rotZ": -3.821713E-07, "scaleX": 0.250000358, "scaleY": 0.250000358, "scaleZ": 0.250000358 }, "Nickname": "Rabbit Hole Data Helper", "Description": "Include this for spawning the correct tokens for Rabbit Hole Expansion", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.09555679, "g": 0.8066202, "b": 0.172213942 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/", "NormalURL": "", "ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/", "Convex": true, "MaterialIndex": 2, "TypeIndex": 0, "CustomShader": { "SpecularColor": { "r": 0.7222887, "g": 0.507659256, "b": 0.339915335 }, "SpecularIntensity": 0.4, "SpecularSharpness": 7.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for _ and if\r\nwe find nothing we look for \r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"San Francisco\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"\tArkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"\tLondon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rome\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Istanbul\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tokyo_123abc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tokyo_456efg\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Tokyo\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Shanghai_123\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"front\"},\r\n \"Sydney\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\r\n \"Ambush (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Book of Psalms (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Extra Ammunition (4)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"M1918 BAR (5)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 8\r\n},\r\n \"Mk 1 Grenades (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n},\n \"Painkillers (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\n \".35 Winchester (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 5\r\n},\r\n \"Venturer (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Archaic Glyphs (3):Eldtown Shards\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Cryptographic Cipher (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Farsight (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n},\r\n \"Fingerprint Kit (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \".25 Automatic (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Fence (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n},\r\n \"Forbidden Knowledge (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Grimm's Fairy Tale (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Old Keyring (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Stray Cat (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 9\r\n},\r\n \"Baseball Bat (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n}\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\r\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\r\n local dataHelper = getObjectFromGUID('708279')\r\n dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend\r\n", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d92dde", "Name": "CardCustom", "Transform": { "posX": 34.43252, "posY": 1.49510384, "posZ": 26.5004139, "rotX": -6.159256E-08, "rotY": 269.992371, "rotZ": -8.53285442E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charles Ross, Esq. (1)", "Description": "Acquisitions and Solicitation", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 607500, "SidewaysCard": false, "CustomDeck": { "6075": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613985824/6CC3243400D9F5037D5E214A4D0DB7BD43545154/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dc8ab9", "Name": "CardCustom", "Transform": { "posX": 23.4825268, "posY": 1.49510384, "posZ": 10.4118176, "rotX": 7.47965743E-08, "rotY": 270.006256, "rotZ": -1.10133321E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Book of Shadows (5)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 611900, "SidewaysCard": false, "CustomDeck": { "6119": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614104140/7E91B747D6A51273544DDAC9EF01BA8D1F2EC741/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dd5a8d", "Name": "CardCustom", "Transform": { "posX": 23.482542, "posY": 1.49510384, "posZ": 24.212019, "rotX": 5.78563242E-09, "rotY": 269.983063, "rotZ": -4.322381E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Quick Study (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 608500, "SidewaysCard": false, "CustomDeck": { "6085": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613994993/EF858BC63921ECE2A7F650EE8AF8555C75997AA6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e10da6", "Name": "CardCustom", "Transform": { "posX": 30.76681, "posY": 1.49510384, "posZ": -1.08788371, "rotX": 9.561826E-08, "rotY": 270.002625, "rotZ": -4.470556E-09, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Madame Labranche (2)", "Description": "Mysterious Benefactress", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 604100, "SidewaysCard": false, "CustomDeck": { "6041": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613934105/79C073955AE2257938218F0EECEFF04A8C406E24/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e4fc98", "Name": "CardCustom", "Transform": { "posX": 27.1277676, "posY": 1.49510384, "posZ": 24.2120876, "rotX": -1.3390104E-07, "rotY": 269.9881, "rotZ": 1.05335971E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Celaeno Fragments (3)", "Description": "Book of Books", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 607400, "SidewaysCard": false, "CustomDeck": { "6074": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613985019/1638A1A44B23E8B985CDAFACDB7178AA4C5D7039/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e5bd5d", "Name": "CardCustom", "Transform": { "posX": 43.4209633, "posY": 1.49510384, "posZ": 10.4116344, "rotX": -5.831998E-08, "rotY": 270.005951, "rotZ": -7.61656338E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Open Gate (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 612600, "SidewaysCard": false, "CustomDeck": { "6126": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614110371/5354A8D388EDA7AC68780B0F7A215E22C072975C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e618ab", "Name": "CardCustom", "Transform": { "posX": 30.7668114, "posY": 1.49510384, "posZ": 1.21211958, "rotX": -1.44662337E-07, "rotY": 270.002563, "rotZ": 5.68866376E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grimm's Fairy Tale (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 603700, "SidewaysCard": false, "CustomDeck": { "6037": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613930685/4331D1897D0CFCC7BA8B5D9800F369FCE24F61AE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e7c879", "Name": "CardCustom", "Transform": { "posX": 43.4209633, "posY": 1.49510384, "posZ": 8.111723, "rotX": -2.657658E-07, "rotY": 270.0061, "rotZ": 1.21328853E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bind Monster (4)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 611800, "SidewaysCard": false, "CustomDeck": { "6118": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614103398/3A246E171826811A6BD472E13C966C07E31C8D37/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e969d6", "Name": "CardCustom", "Transform": { "posX": 30.7668056, "posY": 1.49510384, "posZ": 24.2119732, "rotX": 9.78859447E-08, "rotY": 269.991333, "rotZ": -1.40377E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Laboratory Assistant (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 609000, "SidewaysCard": false, "CustomDeck": { "6090": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613999905/1AE3C6A38CA27CAED3315E9F307B30A5BFEEDE38/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ed565f", "Name": "CardCustom", "Transform": { "posX": 47.08671, "posY": 1.49510384, "posZ": -1.09985447, "rotX": 1.73306276E-07, "rotY": 270.0024, "rotZ": -2.27636448E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Belly of the Beast (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 603400, "SidewaysCard": false, "CustomDeck": { "6034": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613927742/102EEB5330192DDCE7268E7193EA255FC4855A89/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ef4d67", "Name": "CardCustom", "Transform": { "posX": 27.1277523, "posY": 1.49510384, "posZ": 28.8120823, "rotX": -6.867784E-08, "rotY": 269.982971, "rotZ": -3.69315217E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Research Librarian (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 608600, "SidewaysCard": false, "CustomDeck": { "6086": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613996377/49DEAC0BC5A2A3BB35FE4D400C4CB496D023055C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f328e1", "Name": "CardCustom", "Transform": { "posX": 47.0866966, "posY": 1.49510384, "posZ": 35.700798, "rotX": 1.00165716E-08, "rotY": 270.004578, "rotZ": -3.007096E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Prepared for the Worst (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606300, "SidewaysCard": false, "CustomDeck": { "6063": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613974236/2680D342EDA4299B808A230E63352F50C4EE9F59/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f883a7", "Name": "CardCustom", "Transform": { "posX": 34.43254, "posY": 1.49510384, "posZ": 19.6005764, "rotX": 2.2207905E-10, "rotY": 270.006073, "rotZ": -4.16394471E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fine Clothes (1)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 611100, "SidewaysCard": false, "CustomDeck": { "6111": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614056018/487B46EEC7AC528CBACDA9F923881460CB31DB06/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f8e834", "Name": "CardCustom", "Transform": { "posX": 30.7668056, "posY": 1.49510384, "posZ": 28.8119755, "rotX": -4.55964E-08, "rotY": 269.98, "rotZ": 5.848264E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cryptographic Cipher (3)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 607700, "SidewaysCard": false, "CustomDeck": { "6077": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613987354/29DF68BBC75BC3328237D3049D87DEBCC0B2D982/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f9302c", "Name": "CardCustom", "Transform": { "posX": 34.4409752, "posY": 1.49510384, "posZ": -7.74337769, "rotX": 4.18290149E-08, "rotY": 269.9884, "rotZ": 6.21464E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charisma (0)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 602700, "SidewaysCard": false, "CustomDeck": { "6027": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613917125/9A4DEA5E925D41CCE6C6AF37F8283A2BE793B259/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f93232", "Name": "CardCustom", "Transform": { "posX": 23.48253, "posY": 1.49510384, "posZ": 1.21195149, "rotX": 1.74150557E-07, "rotY": 270.003967, "rotZ": -3.00275332E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Yaotl (3)", "Description": "Lost Son of Eztli", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 605000, "SidewaysCard": false, "CustomDeck": { "6050": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613940703/932D2B4E302A060284CE977B077661911D44C12B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fa6c1a", "Name": "CardCustom", "Transform": { "posX": 30.89673, "posY": 1.49510384, "posZ": -7.73136854, "rotX": -2.46834713E-08, "rotY": 269.970337, "rotZ": -2.77655E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kukri (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 602800, "SidewaysCard": false, "CustomDeck": { "6028": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613917723/B09E0076D3A19ACED4D1BB119D6B9AEC5FF46F5D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "faed96", "Name": "CardCustom", "Transform": { "posX": 30.76682, "posY": 1.49510384, "posZ": 38.0119934, "rotX": 1.71848547E-09, "rotY": 270.0077, "rotZ": -1.06907542E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Venturer (1)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 606800, "SidewaysCard": false, "CustomDeck": { "6068": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613979012/A789CC857AC66D660A2D95A1438A417F25415E07/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fde4dd", "Name": "CardCustom", "Transform": { "posX": 47.0866928, "posY": 1.49510384, "posZ": 17.3002148, "rotX": -2.194629E-07, "rotY": 270.005981, "rotZ": -3.48457377E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Narrow Escape (2)", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 610500, "SidewaysCard": false, "CustomDeck": { "6105": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614061386/94A35B45383840829364E068B47726546A0AEB60/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ], "AttachedDecals": [ { "Transform": { "posX": -0.0021877822, "posY": -0.08963572, "posZ": -0.00288731651, "rotX": 270.0, "rotY": 359.869568, "rotZ": 0.0, "scaleX": 2.00000215, "scaleY": 2.00000238, "scaleZ": 2.00000262 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }