{ "GUID": "edb650", "Name": "Custom_Model_Bag", "Transform": { "posX": 0.269844532, "posY": 1.48960721, "posZ": 28.7770157, "rotX": 359.920135, "rotY": 270.0, "rotZ": 0.016873857, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "Of Sphinx and Sands", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1705159936395227290/3E915F544AB47D63A4B1D05B0412216586EFA34A/", "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\r\n", "LuaScriptState": "{\"ml\":{\"13f2cf\":{\"lock\":false,\"pos\":{\"x\":4.3706,\"y\":1.6287,\"z\":11.8032},\"rot\":{\"x\":359.9197,\"y\":269.996,\"z\":0.0168}},\"6d8dad\":{\"lock\":false,\"pos\":{\"x\":11.901,\"y\":1.2781,\"z\":-6.0589},\"rot\":{\"x\":0.08,\"y\":89.9996,\"z\":359.9831}},\"6e0236\":{\"lock\":false,\"pos\":{\"x\":11.9519,\"y\":1.2794,\"z\":-1.4092},\"rot\":{\"x\":0.08,\"y\":89.9995,\"z\":359.9831}},\"7c3cdc\":{\"lock\":false,\"pos\":{\"x\":11.8848,\"y\":1.2769,\"z\":-10.2113},\"rot\":{\"x\":0.08,\"y\":89.9995,\"z\":359.9831}},\"a3da91\":{\"lock\":false,\"pos\":{\"x\":-0.9527,\"y\":1.2611,\"z\":56.0573},\"rot\":{\"x\":0.0208,\"y\":270.0182,\"z\":0.0168}},\"e54f2a\":{\"lock\":false,\"pos\":{\"x\":12.1996,\"y\":1.2807,\"z\":3.856},\"rot\":{\"x\":0.0799,\"y\":89.9951,\"z\":359.9831}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-5.0775,\"y\":1.5802,\"z\":-28.4084},\"rot\":{\"x\":359.9201,\"y\":269.9929,\"z\":0.0169}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "13f2cf", "Name": "Custom_Model", "Transform": { "posX": 4.370596, "posY": 1.6287303, "posZ": 11.8031769, "rotX": 359.919739, "rotY": 269.996155, "rotZ": 0.0168289952, "scaleX": 0.5000004, "scaleY": 0.5000004, "scaleZ": 0.5000004 }, "Nickname": "Sphinx Clue Spawner", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "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\n\n \"The Modern Gallery\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Renaissance Gallery\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Greco Roman Exhibit\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n\r\n \"The Medieval Exhibit\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"}, \r\n \"The Hieroglyphs\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"}, \r\n \"The Sarcophagus Room\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Egyptian Culture Room\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n\r\n \"Egyptian Museum\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Naguib Cafe\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"}, \r\n \"Soor el-Azbakeya\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Qala'at Salah ad-Din\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"El'Arafa 1\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"El'Arafa 2\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"El'Arafa 3\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"El'Arafa 4\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Al-Azhar Mosque\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Khan El-Khalili\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Al-Muizz Street\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Al-Azhar Park\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n\r\n \"Bottom of the Shaft\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Tunnel 1\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Tunnel 2\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Tunnel 3\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Fresco Room\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Black Stairs\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Bottom of the Stairs\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Large Hall - 2\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Large Hall - 1\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Throne Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Altar Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Spiral Staircase\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"The Altar\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Sanctuary: Dimmed\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Sanctuary: Radiant\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Sanctuary: Mystery\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n\r\n \"Tunnel 1a\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Tunnel 2a\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Tunnel 3a\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"The Hieroglyphs - Variant\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"}\n\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\n \"Tool Belt (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Tool Belt (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Yithian Rifle\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"xxx\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n }\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\r\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\r\n local dataHelper = getObjectFromGUID('708279')\r\n dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend\r\n", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6d8dad", "Name": "Bag", "Transform": { "posX": 11.7842636, "posY": 1.27813423, "posZ": -6.4929986, "rotX": 0.079946056, "rotY": 89.99491, "rotZ": 359.9831, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": " - Scenario 3: The Will to Triump", "Description": "Of Sphinx and Sands", "GMNotes": "", "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"05a310\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.643,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"085894\":{\"lock\":false,\"pos\":{\"x\":-16.9971,\"y\":1.8776,\"z\":-15.7602},\"rot\":{\"x\":359.9212,\"y\":270.0085,\"z\":180.0189}},\"0bbfdf\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"134973\":{\"lock\":false,\"pos\":{\"x\":-17.2749,\"y\":1.6866,\"z\":14.5789},\"rot\":{\"x\":359.9283,\"y\":269.974,\"z\":180.0295}},\"1415b3\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"1bdc24\":{\"lock\":false,\"pos\":{\"x\":-17.183,\"y\":1.8821,\"z\":-0.7686},\"rot\":{\"x\":359.9255,\"y\":269.9875,\"z\":180.0169}},\"20328f\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.99,\"z\":0.0803}},\"485b96\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6452,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":270.0278,\"z\":180.0168}},\"4af965\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6144,\"z\":-15.28},\"rot\":{\"x\":359.9203,\"y\":270.0001,\"z\":180.018}},\"657e83\":{\"lock\":false,\"pos\":{\"x\":-17.3029,\"y\":1.6873,\"z\":15.8349},\"rot\":{\"x\":359.9279,\"y\":270.0328,\"z\":180.0296}},\"7e0828\":{\"lock\":false,\"pos\":{\"x\":-17.1203,\"y\":1.6211,\"z\":7.5275},\"rot\":{\"x\":359.9203,\"y\":269.9998,\"z\":180.0179}},\"839c46\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4414},\"rot\":{\"x\":359.9197,\"y\":269.9974,\"z\":0.0168}},\"83dac4\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0082,\"z\":0.0799}},\"8c9c0b\":{\"lock\":false,\"pos\":{\"x\":-9.0993,\"y\":1.6097,\"z\":6.7253},\"rot\":{\"x\":359.9218,\"y\":269.9995,\"z\":0.0168}},\"908c7d\":{\"lock\":false,\"pos\":{\"x\":-17.1408,\"y\":1.8844,\"z\":6.9385},\"rot\":{\"x\":359.9228,\"y\":270.0112,\"z\":180.0188}},\"996d46\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6475,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270.0057,\"z\":180.0168}},\"a0c1d4\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6236,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":45,\"z\":0}},\"b231e2\":{\"lock\":false,\"pos\":{\"x\":-9.1417,\"y\":1.6056,\"z\":-7.6344},\"rot\":{\"x\":359.9218,\"y\":269.9998,\"z\":180.0168}},\"b5de54\":{\"lock\":false,\"pos\":{\"x\":-3.9279,\"y\":1.7492,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0004,\"z\":0.0168}},\"b99653\":{\"lock\":false,\"pos\":{\"x\":-9.1073,\"y\":1.609,\"z\":4.0163},\"rot\":{\"x\":359.9218,\"y\":269.9994,\"z\":0.0168}},\"c902b5\":{\"lock\":false,\"pos\":{\"x\":-9.1333,\"y\":1.6048,\"z\":-10.327},\"rot\":{\"x\":359.9218,\"y\":269.9999,\"z\":180.0168}},\"db2a93\":{\"lock\":false,\"pos\":{\"x\":-20.3273,\"y\":1.6054,\"z\":-15.0879},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"db337a\":{\"lock\":false,\"pos\":{\"x\":-17.1346,\"y\":1.6167,\"z\":-7.791},\"rot\":{\"x\":359.9203,\"y\":269.9995,\"z\":180.0177}},\"e0b5c6\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6497,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"e4693f\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6019,\"z\":-11.51},\"rot\":{\"x\":0.0168,\"y\":180.0089,\"z\":0.0799}},\"e5d265\":{\"lock\":false,\"pos\":{\"x\":-2.6797,\"y\":1.6239,\"z\":-5.0527},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"ea5d7c\":{\"lock\":false,\"pos\":{\"x\":-9.1593,\"y\":1.6116,\"z\":12.7936},\"rot\":{\"x\":359.9218,\"y\":269.9994,\"z\":0.0168}},\"ee8f9f\":{\"lock\":false,\"pos\":{\"x\":-9.1456,\"y\":1.6064,\"z\":-4.7847},\"rot\":{\"x\":359.9218,\"y\":270,\"z\":180.0168}},\"efa8a4\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6233,\"z\":15.19},\"rot\":{\"x\":359.9209,\"y\":269.9991,\"z\":180.0219}},\"f26905\":{\"lock\":false,\"pos\":{\"x\":-8.9513,\"y\":1.6104,\"z\":9.7364},\"rot\":{\"x\":359.9219,\"y\":269.9998,\"z\":0.0168}},\"f2ca74\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0084,\"z\":0.0799}},\"f57bf9\":{\"lock\":false,\"pos\":{\"x\":-0.1166,\"y\":1.3942,\"z\":-8.2549},\"rot\":{\"x\":359.9832,\"y\":0.0009,\"z\":359.9197}},\"f67b90\":{\"lock\":false,\"pos\":{\"x\":-17.2792,\"y\":1.88,\"z\":-8.498},\"rot\":{\"x\":359.9253,\"y\":270.007,\"z\":180.0177}},\"f986c4\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0057,\"z\":180.0168}},\"fc90c6\":{\"lock\":false,\"pos\":{\"x\":-17.1202,\"y\":1.6087,\"z\":11.46},\"rot\":{\"x\":0.0168,\"y\":180.013,\"z\":0.0799}},\"fed0db\":{\"lock\":false,\"pos\":{\"x\":-17.0301,\"y\":1.6188,\"z\":-0.0209},\"rot\":{\"x\":359.9208,\"y\":268.1488,\"z\":180.0202}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "a45247", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69790077, "posY": 1.55831492, "posZ": 14.2786016, "rotX": 359.955139, "rotY": 224.9979, "rotZ": 0.0686730742, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "cf9fb7", "Name": "Deck", "Transform": { "posX": 1.6964252, "posY": 3.69137955, "posZ": 14.2788353, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.05832047, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 3632, 3632, 560214 ], "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "7c5c91", "Name": "Card", "Transform": { "posX": -44.4345779, "posY": 1.36016428, "posZ": -72.60263, "rotX": 0.0201898478, "rotY": 269.979858, "rotZ": 0.0163659472, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Offer of Power", "Description": "Pact.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 3632, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "153bb1", "Name": "Card", "Transform": { "posX": -44.2658653, "posY": 1.5005821, "posZ": -72.6129, "rotX": 0.0101946322, "rotY": 269.97998, "rotZ": 0.0136437723, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Offer of Power", "Description": "Pact.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 3632, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4317ae", "Name": "Card", "Transform": { "posX": -1.51422966, "posY": 1.58404243, "posZ": 35.7713242, "rotX": 359.936737, "rotY": 269.995361, "rotZ": 0.0289564114, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Egyptian Cobra", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560214, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "5b07f2", "Name": "Deck", "Transform": { "posX": 1.69642353, "posY": 3.70130515, "posZ": 14.2788363, "rotX": 359.948151, "rotY": 224.998062, "rotZ": 0.0583202243, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560202, 560204, 560203, 560201, 560200 ], "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "a7c7ca", "Name": "Card", "Transform": { "posX": -0.194654331, "posY": 1.50144207, "posZ": 20.6205215, "rotX": 359.9203, "rotY": 269.999878, "rotZ": 0.01584417, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abomination", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560202, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bee83a", "Name": "Card", "Transform": { "posX": 0.0162202176, "posY": 1.54340756, "posZ": 20.6386929, "rotX": 359.93512, "rotY": 269.999878, "rotZ": 0.0128158405, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abomination", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560204, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b5edff", "Name": "Card", "Transform": { "posX": -0.660485744, "posY": 1.57820976, "posZ": 20.8290386, "rotX": 359.934357, "rotY": 269.999878, "rotZ": 0.0123690646, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abomination", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560203, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f3d97e", "Name": "Card", "Transform": { "posX": -1.00010788, "posY": 1.59268832, "posZ": 20.4676533, "rotX": 359.83606, "rotY": 270.133667, "rotZ": 0.155830234, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abomination", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560201, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "211269", "Name": "Card", "Transform": { "posX": 0.199094072, "posY": 1.596373, "posZ": 20.6138477, "rotX": 359.9331, "rotY": 269.9999, "rotZ": 0.0135967545, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abominable Priest", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560200, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "c60b0a", "Name": "Card", "Transform": { "posX": 1.69642317, "posY": 3.66998863, "posZ": 14.2788363, "rotX": 359.948151, "rotY": 224.998062, "rotZ": 0.05832451, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ritual of Banishment", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560230, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "778b8d", "Name": "Card", "Transform": { "posX": 1.69642138, "posY": 3.670321, "posZ": 14.2788363, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.0583242849, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vision of the Sphinx", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560247, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cbb946", "Name": "Deck", "Transform": { "posX": 1.69642389, "posY": 3.69161916, "posZ": 14.2788363, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.0583098121, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560239, 560223, 560229 ], "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d9a8cb", "Name": "Card", "Transform": { "posX": -23.6762562, "posY": 1.62805724, "posZ": -0.03019995, "rotX": 359.9208, "rotY": 270.001862, "rotZ": 0.015353133, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Thing", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560239, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0c3a64", "Name": "Card", "Transform": { "posX": -23.67663, "posY": 1.66213369, "posZ": -0.0299868584, "rotX": 359.8263, "rotY": 269.999268, "rotZ": 0.01235911, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "King Khephren", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560223, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d8b186", "Name": "Card", "Transform": { "posX": -23.67612, "posY": 1.69398713, "posZ": -0.03005702, "rotX": 359.915924, "rotY": 269.982483, "rotZ": 0.09189521, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Queen Nitokris", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560229, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "b5de54", "Name": "Deck", "Transform": { "posX": -3.92790031, "posY": 1.74919307, "posZ": 5.75720072, "rotX": 359.919739, "rotY": 270.000427, "rotZ": 0.0168469641, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560246, 3624, 3624, 560242, 560241, 560237, 560236, 231712, 231712, 231712, 560234, 560227, 560228, 560221, 560222, 3618, 3618, 560217, 560218, 560215, 560216, 560213, 560212, 3619, 3619, 266412, 3623, 3623, 3623 ], "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "028a93", "Name": "Card", "Transform": { "posX": 7.593293, "posY": 1.49474776, "posZ": 34.7282753, "rotX": 359.9202, "rotY": 269.9999, "rotZ": 0.01641244, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vision of the Sphinx", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560246, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6fa28a", "Name": "Card", "Transform": { "posX": 7.80384445, "posY": 1.52548611, "posZ": 34.9511681, "rotX": 359.920624, "rotY": 270.000183, "rotZ": 0.0172971338, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Wizard of the Order", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 3624, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "159f90", "Name": "Card", "Transform": { "posX": 7.7109313, "posY": 1.56506836, "posZ": 34.8790779, "rotX": 359.919922, "rotY": 269.9999, "rotZ": 0.0151146967, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Wizard of the Order", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 3624, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "837be3", "Name": "Card", "Transform": { "posX": 7.62414646, "posY": 1.580452, "posZ": 34.45554, "rotX": 359.933258, "rotY": 269.999939, "rotZ": 0.0137812579, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tricks of Shadows", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560242, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "695480", "Name": "Card", "Transform": { "posX": 7.631034, "posY": 1.59022653, "posZ": 34.9186859, "rotX": 359.9326, "rotY": 269.999939, "rotZ": 0.0138251008, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tricks of Shadows", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560241, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4ad3cb", "Name": "Card", "Transform": { "posX": 7.548435, "posY": 1.59993482, "posZ": 34.91749, "rotX": 359.9336, "rotY": 269.999878, "rotZ": 0.0130308084, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Test of Leadership", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560237, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "631758", "Name": "Card", "Transform": { "posX": 7.6881547, "posY": 1.6093595, "posZ": 34.78303, "rotX": 359.933228, "rotY": 269.999878, "rotZ": 0.0139393872, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Test of Leadership", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560236, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ab3719", "Name": "Card", "Transform": { "posX": 7.7657156, "posY": 1.61894226, "posZ": 35.0123634, "rotX": 359.933044, "rotY": 269.999878, "rotZ": 0.0138299614, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Swarm of Rats", "Description": "Creature.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231712, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a2cf85", "Name": "Card", "Transform": { "posX": 7.726634, "posY": 1.6285702, "posZ": 34.800663, "rotX": 359.933319, "rotY": 269.999878, "rotZ": 0.0139325773, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Swarm of Rats", "Description": "Creature.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231712, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ab3719", "Name": "Card", "Transform": { "posX": 7.459454, "posY": 1.63857937, "posZ": 35.1186066, "rotX": 359.933838, "rotY": 269.999847, "rotZ": 0.01227259, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Swarm of Rats", "Description": "Creature.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231712, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5ec695", "Name": "Card", "Transform": { "posX": 7.344169, "posY": 1.64829445, "posZ": 34.8527565, "rotX": 359.933624, "rotY": 269.999817, "rotZ": 0.0132609736, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scorpion", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560234, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2f86b9", "Name": "Card", "Transform": { "posX": 7.471088, "posY": 1.65779448, "posZ": 35.0875549, "rotX": 359.9341, "rotY": 269.999817, "rotZ": 0.012524738, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mummy", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560227, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6bd729", "Name": "Card", "Transform": { "posX": 7.40138674, "posY": 1.667485, "posZ": 34.8506241, "rotX": 359.9335, "rotY": 269.999817, "rotZ": 0.0133567993, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mummy", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560228, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7e405e", "Name": "Card", "Transform": { "posX": 7.53400564, "posY": 1.6768707, "posZ": 34.5031776, "rotX": 359.933533, "rotY": 269.999817, "rotZ": 0.014067092, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "It Moved!", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560221, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e6a9c5", "Name": "Card", "Transform": { "posX": 7.86059666, "posY": 1.686222, "posZ": 35.0862923, "rotX": 359.932922, "rotY": 269.999756, "rotZ": 0.013900077, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "It Moved!", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560222, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "27c05d", "Name": "Card", "Transform": { "posX": 8.006232, "posY": 1.69568992, "posZ": 35.3083344, "rotX": 359.932861, "rotY": 269.999756, "rotZ": 0.0135892341, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frozen in Fear", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3618, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c40f57", "Name": "Card", "Transform": { "posX": 7.94555426, "posY": 1.70537138, "posZ": 35.1696358, "rotX": 359.9336, "rotY": 269.999756, "rotZ": 0.0136938561, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frozen in Fear", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3618, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9f1ef0", "Name": "Card", "Transform": { "posX": 8.050815, "posY": 1.71486008, "posZ": 35.2113228, "rotX": 359.932983, "rotY": 269.999756, "rotZ": 0.0137761263, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Falling Stone", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560217, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bcc580", "Name": "Card", "Transform": { "posX": 7.78473473, "posY": 1.72492814, "posZ": 35.56178, "rotX": 359.9331, "rotY": 269.999725, "rotZ": 0.0109788869, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Falling Stone", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560218, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e89747", "Name": "Card", "Transform": { "posX": 7.550901, "posY": 1.73478317, "posZ": 35.25145, "rotX": 359.9339, "rotY": 269.999664, "rotZ": 0.0115463259, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Egyptian Horned Viper", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560215, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "63bba8", "Name": "Card", "Transform": { "posX": 7.6820035, "posY": 1.74425483, "posZ": 35.1736565, "rotX": 359.9331, "rotY": 269.9997, "rotZ": 0.0137677211, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Egyptian Horned Viper", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560216, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e6bf7b", "Name": "Card", "Transform": { "posX": -3.58127213, "posY": 1.60492408, "posZ": 16.4946976, "rotX": 359.91983, "rotY": 269.9957, "rotZ": 0.0164478719, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Echoing Footsteps", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560213, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d6cba7", "Name": "Card", "Transform": { "posX": -3.63027668, "posY": 1.64152777, "posZ": 16.2523441, "rotX": 359.9182, "rotY": 269.9775, "rotZ": 0.0102949115, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Echoing Footsteps", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560212, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f1a34d", "Name": "Card", "Transform": { "posX": -3.845435, "posY": 1.71565, "posZ": 10.3834553, "rotX": 359.966675, "rotY": 270.000061, "rotZ": 179.890549, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dissonant Voices", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3619, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "260768", "Name": "Card", "Transform": { "posX": -3.84539557, "posY": 1.69511211, "posZ": 10.3841391, "rotX": 359.935577, "rotY": 269.998474, "rotZ": 180.232239, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dissonant Voices", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3619, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a08df8", "Name": "Card", "Transform": { "posX": -3.84535456, "posY": 1.67993009, "posZ": 10.38332, "rotX": 359.937317, "rotY": 269.998474, "rotZ": 179.967712, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Choose", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266412, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c70e63", "Name": "Card", "Transform": { "posX": -3.845425, "posY": 1.67298675, "posZ": 10.3834095, "rotX": 359.934265, "rotY": 269.99884, "rotZ": 179.95697, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3623, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4072d7", "Name": "Card", "Transform": { "posX": -3.845399, "posY": 1.63546252, "posZ": 10.3833532, "rotX": 359.9179, "rotY": 269.999817, "rotZ": 179.96701, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3623, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "492e5e", "Name": "Card", "Transform": { "posX": -3.84545851, "posY": 1.60342133, "posZ": 10.3834782, "rotX": 359.920654, "rotY": 270.000244, "rotZ": 180.022461, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3623, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "20328f", "Name": "Deck", "Transform": { "posX": -2.72479987, "posY": 1.62076056, "posZ": 0.3733003, "rotX": 0.01684966, "rotY": 179.98999, "rotZ": 0.0802529752, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 560304, 560301, 560302 ], "CustomDeck": { "5603": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577625584/DDA2EC9A1411514B56D9BCF86A4A6A7E76384BCB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664609261590127375/A2F7A4DE80ED651D32E5ECA9A70D33D439E46A52/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "90e5fa", "Name": "Card", "Transform": { "posX": -1.199634, "posY": 2.50416279, "posZ": -1.73208427, "rotX": 0.421212375, "rotY": 179.999573, "rotZ": 179.842377, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560304, "SidewaysCard": true, "CustomDeck": { "5603": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577625584/DDA2EC9A1411514B56D9BCF86A4A6A7E76384BCB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664609261590127375/A2F7A4DE80ED651D32E5ECA9A70D33D439E46A52/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "54338d", "Name": "Card", "Transform": { "posX": -1.14742136, "posY": 2.46779919, "posZ": -1.93166554, "rotX": 0.357435226, "rotY": 180.000046, "rotZ": 180.047775, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560301, "SidewaysCard": true, "CustomDeck": { "5603": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577625584/DDA2EC9A1411514B56D9BCF86A4A6A7E76384BCB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664609261590127375/A2F7A4DE80ED651D32E5ECA9A70D33D439E46A52/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ae8a4a", "Name": "Card", "Transform": { "posX": -0.8389132, "posY": 2.01963973, "posZ": -1.85381508, "rotX": 15.896637, "rotY": 178.514252, "rotZ": 179.789688, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560302, "SidewaysCard": true, "CustomDeck": { "5603": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577625584/DDA2EC9A1411514B56D9BCF86A4A6A7E76384BCB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664609261590127375/A2F7A4DE80ED651D32E5ECA9A70D33D439E46A52/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "e5d265", "Name": "Deck", "Transform": { "posX": -2.67969966, "posY": 1.623917, "posZ": -5.05270052, "rotX": 0.0168362, "rotY": 179.999542, "rotZ": 0.08025593, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 560306, 560305, 560303, 560300 ], "CustomDeck": { "5603": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577625584/DDA2EC9A1411514B56D9BCF86A4A6A7E76384BCB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664609261590127375/A2F7A4DE80ED651D32E5ECA9A70D33D439E46A52/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "f122de", "Name": "Card", "Transform": { "posX": -2.67963338, "posY": 1.597335, "posZ": -5.052747, "rotX": 0.0168359689, "rotY": 180.000015, "rotZ": 0.08025491, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560306, "SidewaysCard": true, "CustomDeck": { "5603": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577625584/DDA2EC9A1411514B56D9BCF86A4A6A7E76384BCB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664609261590127375/A2F7A4DE80ED651D32E5ECA9A70D33D439E46A52/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d6238b", "Name": "Card", "Transform": { "posX": -2.688546, "posY": 1.64405715, "posZ": -5.04852962, "rotX": 0.0134782176, "rotY": 180.0, "rotZ": 0.0253604129, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560305, "SidewaysCard": true, "CustomDeck": { "5603": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577625584/DDA2EC9A1411514B56D9BCF86A4A6A7E76384BCB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664609261590127375/A2F7A4DE80ED651D32E5ECA9A70D33D439E46A52/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f3922d", "Name": "Card", "Transform": { "posX": -2.68854952, "posY": 1.68197489, "posZ": -5.04852962, "rotX": 0.0146278273, "rotY": 179.999939, "rotZ": 359.804779, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560303, "SidewaysCard": true, "CustomDeck": { "5603": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577625584/DDA2EC9A1411514B56D9BCF86A4A6A7E76384BCB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664609261590127375/A2F7A4DE80ED651D32E5ECA9A70D33D439E46A52/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c07185", "Name": "Card", "Transform": { "posX": -2.68855119, "posY": 1.671875, "posZ": -5.04855442, "rotX": 0.0124761472, "rotY": 179.99939, "rotZ": 0.09086125, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560300, "SidewaysCard": true, "CustomDeck": { "5603": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577625584/DDA2EC9A1411514B56D9BCF86A4A6A7E76384BCB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664609261590127375/A2F7A4DE80ED651D32E5ECA9A70D33D439E46A52/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "f57bf9", "Name": "Bag", "Transform": { "posX": -0.116599143, "posY": 1.39416516, "posZ": -8.2549, "rotX": 359.983154, "rotY": 0.000942815735, "rotZ": 359.919678, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fear Tokens", "Description": "Of Sphinx and Sands", "GMNotes": "", "ColorDiffuse": { "r": 0.874564469, "g": 0.8375244, "b": 0.8029537 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": false, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "40141c", "Name": "Custom_Token_Stack", "Transform": { "posX": -0.0732934847, "posY": 5.8151, "posZ": -8.373145, "rotX": 359.826263, "rotY": 269.9735, "rotZ": 180.267181, "scaleX": 0.125677034, "scaleY": 1.0, "scaleZ": 0.125677034 }, "Nickname": "Fear", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": false, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Number": 22, "CustomImage": { "ImageURL": "https://i.imgur.com/mtn32L4.jpg", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "839c46", "Name": "Card", "Transform": { "posX": -3.95600033, "posY": 1.59753942, "posZ": -10.4414015, "rotX": 359.919739, "rotY": 269.997437, "rotZ": 0.0168408174, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560248, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c902b5", "Name": "Card", "Transform": { "posX": -9.1333, "posY": 1.60477757, "posZ": -10.327, "rotX": 359.921783, "rotY": 269.999939, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560431, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698409406945061425/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1698409406945063585/F15A975EB2323688D23D0918E61187FC0AAB41B2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b231e2", "Name": "Card", "Transform": { "posX": -9.141701, "posY": 1.60558057, "posZ": -7.6344, "rotX": 359.921783, "rotY": 269.999817, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560432, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698409406945061425/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1698409406945063585/F15A975EB2323688D23D0918E61187FC0AAB41B2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ee8f9f", "Name": "Card", "Transform": { "posX": -9.145601, "posY": 1.60642338, "posZ": -4.78470039, "rotX": 359.921783, "rotY": 269.999969, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560433, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698409406945061425/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1698409406945063585/F15A975EB2323688D23D0918E61187FC0AAB41B2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b99653", "Name": "Card", "Transform": { "posX": -9.107301, "posY": 1.60895681, "posZ": 4.01629972, "rotX": 359.921783, "rotY": 269.999329, "rotZ": 0.016840471, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Matchbook", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560226, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8c9c0b", "Name": "Card", "Transform": { "posX": -9.099301, "posY": 1.60974181, "posZ": 6.72529936, "rotX": 359.9218, "rotY": 269.999542, "rotZ": 0.0168403983, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Blindfold", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560207, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f26905", "Name": "Card", "Transform": { "posX": -8.9513, "posY": 1.610422, "posZ": 9.7364, "rotX": 359.9219, "rotY": 269.9998, "rotZ": 0.01681715, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Flashlight", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560219, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ea5d7c", "Name": "Card", "Transform": { "posX": -9.159301, "posY": 1.61160827, "posZ": 12.793601, "rotX": 359.921753, "rotY": 269.99942, "rotZ": 0.0168468561, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dr. Francis Morgan", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560211, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "657e83", "Name": "Custom_Token", "Transform": { "posX": -17.30286, "posY": 1.68729818, "posZ": 15.83495, "rotX": 359.926331, "rotY": 270.032776, "rotZ": 180.0141, "scaleX": 0.125677034, "scaleY": 1.0, "scaleZ": 0.125677034 }, "Nickname": "Fear", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": false, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/mtn32L4.jpg", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "134973", "Name": "Custom_Token", "Transform": { "posX": -17.2748432, "posY": 1.68658054, "posZ": 14.57888, "rotX": 359.9297, "rotY": 269.9737, "rotZ": 180.0229, "scaleX": 0.125677034, "scaleY": 1.0, "scaleZ": 0.125677034 }, "Nickname": "Fear", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": false, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/mtn32L4.jpg", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "efa8a4", "Name": "Card", "Transform": { "posX": -17.119997, "posY": 1.62332118, "posZ": 15.1900158, "rotX": 359.9209, "rotY": 269.99884, "rotZ": 180.021912, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bottom of the Shaft", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560208, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fc90c6", "Name": "Custom_Tile", "Transform": { "posX": -17.1202, "posY": 1.608696, "posZ": 11.46, "rotX": 0.0168210622, "rotY": 180.013031, "rotZ": 0.0799402446, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "7e0828", "Name": "Card", "Transform": { "posX": -17.1202984, "posY": 1.62113023, "posZ": 7.52750063, "rotX": 359.9203, "rotY": 269.999756, "rotZ": 180.017883, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tunnel 1", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560243, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "908c7d", "Name": "Custom_Token_Stack", "Transform": { "posX": -17.1407948, "posY": 1.8844018, "posZ": 6.93849754, "rotX": 359.922821, "rotY": 270.0111, "rotZ": 180.018845, "scaleX": 0.125677034, "scaleY": 1.0, "scaleZ": 0.125677034 }, "Nickname": "Fear", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": false, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Number": 3, "CustomImage": { "ImageURL": "https://i.imgur.com/mtn32L4.jpg", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f2ca74", "Name": "Custom_Tile", "Transform": { "posX": -17.1199, "posY": 1.606462, "posZ": 3.85999966, "rotX": 0.0168276224, "rotY": 180.008347, "rotZ": 0.07994246, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "fed0db", "Name": "Card", "Transform": { "posX": -17.030098, "posY": 1.61879051, "posZ": -0.0208986681, "rotX": 359.920837, "rotY": 268.1488, "rotZ": 180.020187, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tunnel 2", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560244, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1bdc24", "Name": "Custom_Token_Stack", "Transform": { "posX": -17.1829948, "posY": 1.88208342, "posZ": -0.7686026, "rotX": 359.9255, "rotY": 269.987457, "rotZ": 180.016891, "scaleX": 0.125677034, "scaleY": 1.0, "scaleZ": 0.125677034 }, "Nickname": "Fear", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": false, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Number": 3, "CustomImage": { "ImageURL": "https://i.imgur.com/mtn32L4.jpg", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "83dac4", "Name": "Custom_Tile", "Transform": { "posX": -17.1198978, "posY": 1.604202, "posZ": -3.83000016, "rotX": 0.0168279279, "rotY": 180.008133, "rotZ": 0.07994913, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "db337a", "Name": "Card", "Transform": { "posX": -17.1345978, "posY": 1.61665118, "posZ": -7.790999, "rotX": 359.920258, "rotY": 269.9995, "rotZ": 180.0177, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tunnel 3", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560245, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f67b90", "Name": "Custom_Token_Stack", "Transform": { "posX": -17.2791958, "posY": 1.879975, "posZ": -8.498003, "rotX": 359.9253, "rotY": 270.007019, "rotZ": 180.017654, "scaleX": 0.125677034, "scaleY": 1.0, "scaleZ": 0.125677034 }, "Nickname": "Fear", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": false, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Number": 3, "CustomImage": { "ImageURL": "https://i.imgur.com/mtn32L4.jpg", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e4693f", "Name": "Custom_Tile", "Transform": { "posX": -17.1198978, "posY": 1.60194492, "posZ": -11.5100012, "rotX": 0.0168267731, "rotY": 180.009, "rotZ": 0.07994957, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "4af965", "Name": "Card", "Transform": { "posX": -17.1200981, "posY": 1.61442566, "posZ": -15.2799988, "rotX": 359.9203, "rotY": 270.000122, "rotZ": 180.01799, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fresco Room", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560220, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "085894", "Name": "Custom_Token_Stack", "Transform": { "posX": -16.9970951, "posY": 1.87758029, "posZ": -15.7602015, "rotX": 359.921173, "rotY": 270.008484, "rotZ": 180.0189, "scaleX": 0.125677034, "scaleY": 1.0, "scaleZ": 0.125677034 }, "Nickname": "Fear", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": false, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Number": 3, "CustomImage": { "ImageURL": "https://i.imgur.com/mtn32L4.jpg", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.1, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "db2a93", "Name": "Custom_Tile", "Transform": { "posX": -20.3273, "posY": 1.605366, "posZ": -15.0879, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 0.0168655924, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "a0c1d4", "Name": "Card", "Transform": { "posX": -23.6765976, "posY": 1.62358487, "posZ": -15.2799988, "rotX": 359.9201, "rotY": 270.0, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Black Stairs", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560206, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e0b5c6", "Name": "Card", "Transform": { "posX": -36.7732, "posY": 1.64970577, "posZ": 11.460001, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bottom of the Stairs", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560209, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f986c4", "Name": "Card", "Transform": { "posX": -36.7732, "posY": 1.64856255, "posZ": 7.57, "rotX": 359.9201, "rotY": 270.005737, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Large Hall - 2", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560224, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "996d46", "Name": "Card", "Transform": { "posX": -36.7732, "posY": 1.64747226, "posZ": 3.86000061, "rotX": 359.9201, "rotY": 270.0057, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Large Hall - 1", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560225, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1415b3", "Name": "Card", "Transform": { "posX": -36.7732, "posY": 1.646329, "posZ": -0.0299995989, "rotX": 359.9201, "rotY": 270.000122, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Throne Room", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560240, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "485b96", "Name": "Card", "Transform": { "posX": -36.7732, "posY": 1.64521217, "posZ": -3.82999969, "rotX": 359.9201, "rotY": 270.027771, "rotZ": 180.0168, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Altar Room", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560205, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0bbfdf", "Name": "Card", "Transform": { "posX": -36.7733, "posY": 1.644075, "posZ": -7.70000029, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Spiral Staircase", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560235, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "05a310", "Name": "Card", "Transform": { "posX": -36.7732, "posY": 1.64295518, "posZ": -11.5100012, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Altar", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560238, "SidewaysCard": false, "CustomDeck": { "5602": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577547869/CC20B103537BBB85F5229D6C5A3E2E2F168A82C8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1678120729577551787/67A0CAE5344903E6F301C240115E5AF0CCF224EA/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "6e0236", "Name": "Bag", "Transform": { "posX": 11.9519005, "posY": 1.27939773, "posZ": -1.40920067, "rotX": 0.07996024, "rotY": 89.99956, "rotZ": 359.9831, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": " - Scenario 2: Chaos in Cairo", "Description": "Of Sphinx and Sands", "GMNotes": "", "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"1f1095\":{\"lock\":false,\"pos\":{\"x\":-3.9279,\"y\":1.6866,\"z\":5.7571},\"rot\":{\"x\":359.9198,\"y\":269.9658,\"z\":0.0169}},\"36afc6\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6325,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"886a75\":{\"lock\":false,\"pos\":{\"x\":-2.6887,\"y\":1.6287,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":45,\"z\":0}},\"be2521\":{\"lock\":false,\"pos\":{\"x\":0.0864,\"y\":1.3975,\"z\":3.9199},\"rot\":{\"x\":359.9832,\"y\":0.0001,\"z\":359.9197}},\"d04e11\":{\"lock\":false,\"pos\":{\"x\":12.5258,\"y\":1.4571,\"z\":-23.6737},\"rot\":{\"x\":359.9201,\"y\":269.9822,\"z\":0.0169}},\"e77543\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9974,\"z\":0.0168}},\"fefd5f\":{\"lock\":false,\"pos\":{\"x\":-2.7249,\"y\":1.6256,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0325,\"z\":0.0803}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "1f1095", "Name": "Deck", "Transform": { "posX": -3.9279, "posY": 1.68661046, "posZ": 5.75710058, "rotX": 359.919769, "rotY": 269.96582, "rotZ": 0.01689074, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 3623, 3623, 3623, 560161, 560162, 3619, 3619, 231704, 231704, 3632, 560127, 560126, 560149, 560150, 560113, 560155 ], "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 }, "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "492e5e", "Name": "Card", "Transform": { "posX": 3.05008721, "posY": 1.49844122, "posZ": 25.5730839, "rotX": 359.919739, "rotY": 269.967468, "rotZ": 0.0200844258, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3623, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c70e63", "Name": "Card", "Transform": { "posX": 3.64062619, "posY": 1.59933484, "posZ": 27.1604538, "rotX": 359.9098, "rotY": 269.9676, "rotZ": 359.9696, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3623, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4072d7", "Name": "Card", "Transform": { "posX": 3.21736622, "posY": 1.54815876, "posZ": 26.13762, "rotX": 359.91568, "rotY": 269.967529, "rotZ": -0.0013194253, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3623, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4cf4cd", "Name": "Card", "Transform": { "posX": -3.92769814, "posY": 1.69010723, "posZ": 5.757144, "rotX": 359.920074, "rotY": 270.000275, "rotZ": 0.0171132535, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Brigand", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560161, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dd0113", "Name": "Card", "Transform": { "posX": -3.927697, "posY": 1.69953239, "posZ": 5.757144, "rotX": 359.9202, "rotY": 270.0003, "rotZ": 0.0166579839, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Brigand", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560162, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "260768", "Name": "Card", "Transform": { "posX": -3.92769814, "posY": 1.70940411, "posZ": 5.757144, "rotX": 359.919617, "rotY": 269.967468, "rotZ": 0.016716931, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dissonant Voices", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3619, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f1a34d", "Name": "Card", "Transform": { "posX": -3.92769742, "posY": 1.71889627, "posZ": 5.757144, "rotX": 359.920074, "rotY": 269.967468, "rotZ": 0.0171728525, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dissonant Voices", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3619, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "057d5f", "Name": "Card", "Transform": { "posX": -4.330632, "posY": 1.60534108, "posZ": 14.3476915, "rotX": 359.91983, "rotY": 269.9674, "rotZ": 0.0164000373, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "False Lead", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 231704, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2ceae2", "Name": "Card", "Transform": { "posX": -4.20168447, "posY": 1.64938879, "posZ": 14.2455912, "rotX": 359.921, "rotY": 269.967438, "rotZ": 0.0153763667, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "False Lead", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 231704, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "153bb1", "Name": "Card", "Transform": { "posX": -3.81579256, "posY": 1.68276608, "posZ": 14.1844616, "rotX": 359.919952, "rotY": 269.967438, "rotZ": 0.01664182, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Offer of Power", "Description": "Pact.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3632, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0a066", "Name": "Card", "Transform": { "posX": -9.043724, "posY": 1.514663, "posZ": 23.6191483, "rotX": 359.920258, "rotY": 270.004883, "rotZ": 0.0159260463, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "It Moved!", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560127, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "302d83", "Name": "Card", "Transform": { "posX": -8.990629, "posY": 1.55682218, "posZ": 23.7024975, "rotX": 359.936066, "rotY": 270.004028, "rotZ": 0.012050665, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "It Moved!", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560126, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f173fd", "Name": "Card", "Transform": { "posX": -8.759836, "posY": 1.59043849, "posZ": 23.4186668, "rotX": 359.933136, "rotY": 270.0047, "rotZ": 0.0137821613, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Test of Leadership", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560149, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c6765d", "Name": "Card", "Transform": { "posX": -8.723547, "posY": 1.59999669, "posZ": 23.562952, "rotX": 359.920471, "rotY": 270.023438, "rotZ": 0.01628015, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Test of Leadership", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560150, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a3f115", "Name": "Card", "Transform": { "posX": -4.89223433, "posY": 1.73012042, "posZ": 13.8296719, "rotX": 359.922455, "rotY": 269.999542, "rotZ": 0.0190715268, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dagger In the Crowd", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560113, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b9ea75", "Name": "Card", "Transform": { "posX": -4.01771927, "posY": 1.73867011, "posZ": 13.7523565, "rotX": 359.92, "rotY": 270.0001, "rotZ": 0.0166619532, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vision of the Sphinx", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560155, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "36afc6", "Name": "Card", "Transform": { "posX": -23.6766, "posY": 1.63253975, "posZ": 15.19, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Egyptian Museum", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560115, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "886a75", "Name": "Deck", "Transform": { "posX": -2.68869972, "posY": 1.62874484, "posZ": -5.04850054, "rotX": 0.0168354977, "rotY": 180.0, "rotZ": 0.08025635, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 559105, 559100, 559103, 559107, 559108 ], "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d717fa", "Name": "Card", "Transform": { "posX": 0.0187090039, "posY": 1.69063938, "posZ": -4.473446, "rotX": 0.00163528579, "rotY": 180.000153, "rotZ": 179.906342, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 559105, "SidewaysCard": true, "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "02bbe2", "Name": "Card", "Transform": { "posX": -0.331647336, "posY": 1.69047236, "posZ": -4.98070049, "rotX": 0.0132667152, "rotY": 179.999847, "rotZ": 179.319855, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 559100, "SidewaysCard": true, "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "387765", "Name": "Card", "Transform": { "posX": -0.325896084, "posY": 1.67111766, "posZ": -5.3100543, "rotX": 0.0125868758, "rotY": 179.999969, "rotZ": 179.892792, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 559103, "SidewaysCard": true, "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ac87f0", "Name": "Card", "Transform": { "posX": -0.2426894, "posY": 1.636707, "posZ": -4.657803, "rotX": 0.0107082585, "rotY": 179.999985, "rotZ": 179.927368, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 559107, "SidewaysCard": true, "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eb04f5", "Name": "Card", "Transform": { "posX": -0.12257807, "posY": 1.59382272, "posZ": -4.74581575, "rotX": 0.017033156, "rotY": 180.025528, "rotZ": 180.081711, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 559108, "SidewaysCard": true, "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "a45247", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.70670068, "posY": 1.55830193, "posZ": 14.2769022, "rotX": 359.95517, "rotY": 224.98349, "rotZ": 0.06868475, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "Of Sphinx and Sands", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "d798ff", "Name": "Deck", "Transform": { "posX": 1.69642353, "posY": 3.70129085, "posZ": 14.2788363, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.05831507, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560106, 560128, 560136, 560142, 560143 ], "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "155413", "Name": "Card", "Transform": { "posX": -3.84546185, "posY": 1.60352778, "posZ": 10.3834343, "rotX": 359.919556, "rotY": 269.9984, "rotZ": 0.0183515977, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ankh Pendant", "Description": "Market Item", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560106, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "97841c", "Name": "Card", "Transform": { "posX": -3.84551668, "posY": 1.63332736, "posZ": 10.3835354, "rotX": 0.040973343, "rotY": 269.9991, "rotZ": 359.8178, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Jewelry Box", "Description": "Market Item", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560128, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9e4b80", "Name": "Card", "Transform": { "posX": -3.845932, "posY": 1.67959809, "posZ": 10.2515984, "rotX": 359.919647, "rotY": 269.999634, "rotZ": 0.0164330117, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kushari", "Description": "Market Item", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560136, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "055eb8", "Name": "Card", "Transform": { "posX": -3.84543324, "posY": 1.67800629, "posZ": 10.3834391, "rotX": 359.9177, "rotY": 269.999664, "rotZ": 0.0160154421, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Satchel", "Description": "Market Item", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560142, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d63aba", "Name": "Card", "Transform": { "posX": -3.84543586, "posY": 1.68775368, "posZ": 10.383441, "rotX": 359.920166, "rotY": 269.999817, "rotZ": 0.0147909382, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scarab Bracelet", "Description": "Market Item", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560143, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "dbfd27", "Name": "Deck", "Transform": { "posX": 1.69642425, "posY": 3.70598578, "posZ": 14.2788353, "rotX": 359.948029, "rotY": 224.998062, "rotZ": 0.0583129674, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560107, 560108, 560109, 560121, 560122, 560137 ], "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "5cc348", "Name": "Card", "Transform": { "posX": -4.89434242, "posY": 1.60593879, "posZ": 13.8653336, "rotX": 359.920319, "rotY": 269.9996, "rotZ": 0.0130205527, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bizarre X-Ray", "Description": "Tome", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560107, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f02e8d", "Name": "Card", "Transform": { "posX": -4.83724976, "posY": 1.6477921, "posZ": 13.4114246, "rotX": 359.916, "rotY": 269.999664, "rotZ": 0.02024325, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Book of Human Behaviors", "Description": "Tome", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560108, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "35b1f4", "Name": "Card", "Transform": { "posX": -4.81266451, "posY": 1.68196523, "posZ": 13.5309753, "rotX": 359.920135, "rotY": 269.9996, "rotZ": 0.0164630171, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Book of Potions", "Description": "Tome", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560109, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "51e624", "Name": "Card", "Transform": { "posX": -4.952525, "posY": 1.69169009, "posZ": 13.4235106, "rotX": 359.919678, "rotY": 269.999634, "rotZ": 0.0164062846, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grimoire", "Description": "Tome", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560121, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ac477f", "Name": "Card", "Transform": { "posX": -4.986743, "posY": 1.70147049, "posZ": 13.8002234, "rotX": 359.9197, "rotY": 269.999451, "rotZ": 0.016434256, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Holy Bible", "Description": "Tome", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560122, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9306c8", "Name": "Card", "Transform": { "posX": -4.68577528, "posY": 1.71049178, "posZ": 13.1051369, "rotX": 359.9199, "rotY": 269.9984, "rotZ": 0.0172548164, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Map to Dig Site", "Description": "Tome", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560137, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "ae8747", "Name": "Card", "Transform": { "posX": 1.69642365, "posY": 3.66991639, "posZ": 14.2788363, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.05831853, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Eye of Horus", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560151, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "508866", "Name": "Deck", "Transform": { "posX": 1.69642591, "posY": 3.686484, "posZ": 14.2788353, "rotX": 359.948029, "rotY": 224.998062, "rotZ": 0.05831004, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560100, 560104 ], "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "46f635", "Name": "Card", "Transform": { "posX": -13.7796345, "posY": 1.615317, "posZ": 3.5984683, "rotX": 359.920258, "rotY": 269.999634, "rotZ": 0.0158159155, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abdul Reis", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560100, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fcc793", "Name": "Card", "Transform": { "posX": -13.4906626, "posY": 1.65719533, "posZ": 3.31095052, "rotX": 359.934174, "rotY": 269.999878, "rotZ": 0.0122351982, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ali Ziz", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560104, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "01f1ec", "Name": "Card", "Transform": { "posX": 1.69642115, "posY": 3.67032552, "posZ": 14.2788363, "rotX": 359.948059, "rotY": 224.998062, "rotZ": 180.058319, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Swordman", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560148, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "121ad5", "Name": "Deck", "Transform": { "posX": 1.69642425, "posY": 3.749292, "posZ": 14.2788353, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.05830751, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560152, 560144, 560145, 560156, 560157, 560140, 560141, 560147, 560123, 560124, 560125, 560153, 560154, 560112, 560111 ], "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d38bdd", "Name": "Card", "Transform": { "posX": -10.9281435, "posY": 1.61420643, "posZ": 13.3378925, "rotX": 359.920227, "rotY": 269.999878, "rotZ": 0.0160299726, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Thug", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560152, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8a88fc", "Name": "Card", "Transform": { "posX": -10.8544283, "posY": 1.656385, "posZ": 13.45638, "rotX": 359.9352, "rotY": 269.9999, "rotZ": 0.0120289018, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scorpion", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560144, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "438744", "Name": "Card", "Transform": { "posX": -10.6664743, "posY": 1.690098, "posZ": 13.2020216, "rotX": 359.933136, "rotY": 269.999878, "rotZ": 0.01370395, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Snarling Jackal", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560145, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a4ba74", "Name": "Card", "Transform": { "posX": -10.9593992, "posY": 1.7001611, "posZ": 13.7609816, "rotX": 359.934021, "rotY": 269.999847, "rotZ": 0.0116537288, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Which Way?", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560156, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0e047e", "Name": "Card", "Transform": { "posX": -11.0386581, "posY": 1.70984924, "posZ": 13.545043, "rotX": 359.933624, "rotY": 269.999878, "rotZ": 0.01293191, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Which Way?", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560157, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "29ceb4", "Name": "Card", "Transform": { "posX": -10.9163933, "posY": 1.7192868, "posZ": 13.301466, "rotX": 359.933441, "rotY": 269.999878, "rotZ": 0.0134397857, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rushing Traffic", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560140, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "617d44", "Name": "Card", "Transform": { "posX": -10.9113855, "posY": 1.728999, "posZ": 13.6217709, "rotX": 359.932556, "rotY": 269.999878, "rotZ": 0.0138327023, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rushing Traffic", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560141, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3a74d8", "Name": "Card", "Transform": { "posX": -10.9042721, "posY": 1.73855746, "posZ": 13.4211226, "rotX": 359.933441, "rotY": 269.999847, "rotZ": 0.0138369054, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Street Punks", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560147, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e9ed13", "Name": "Card", "Transform": { "posX": -11.0374031, "posY": 1.7483536, "posZ": 13.5204868, "rotX": 359.933563, "rotY": 269.999878, "rotZ": 0.0131113827, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Homeless Child", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560123, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f7902a", "Name": "Card", "Transform": { "posX": -11.0934267, "posY": 1.75806344, "posZ": 13.6144867, "rotX": 359.9336, "rotY": 269.999878, "rotZ": 0.0128502464, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Homeless Child", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560124, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4aacff", "Name": "Card", "Transform": { "posX": -11.1745176, "posY": 1.76774478, "posZ": 13.4213791, "rotX": 359.933472, "rotY": 269.999878, "rotZ": 0.0133090969, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Homeless Child", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560125, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9b3189", "Name": "Card", "Transform": { "posX": -11.1935406, "posY": 1.77728951, "posZ": 13.0139074, "rotX": 359.9337, "rotY": 269.999878, "rotZ": 0.0141231557, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Update", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560153, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0cd06", "Name": "Card", "Transform": { "posX": -11.2016983, "posY": 1.87009776, "posZ": 13.2095442, "rotX": 3.5628345, "rotY": 270.002441, "rotZ": 0.0170256682, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Update", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560154, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9d0c5e", "Name": "Card", "Transform": { "posX": -10.8977518, "posY": 1.79635692, "posZ": 13.5061541, "rotX": 359.932617, "rotY": 269.999878, "rotZ": 0.0139261773, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cutpurse", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560112, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2a176d", "Name": "Card", "Transform": { "posX": -10.9417877, "posY": 1.80591273, "posZ": 13.402503, "rotX": 359.9197, "rotY": 269.999451, "rotZ": 0.0166313741, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cutpurse", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560111, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "2d17ef", "Name": "Deck", "Transform": { "posX": 1.69642341, "posY": 3.69171357, "posZ": 14.2788363, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.05831491, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560101, 560163, 560164 ], "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4b3728", "Name": "Card", "Transform": { "posX": -9.433158, "posY": 1.60986376, "posZ": 5.78645, "rotX": 359.9165, "rotY": 270.000122, "rotZ": 0.0129103754, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Adept", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560101, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4b94fb", "Name": "Card", "Transform": { "posX": -13.0543137, "posY": 1.6889385, "posZ": -0.005555308, "rotX": 359.92, "rotY": 269.999664, "rotZ": 0.01681823, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Assassin", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560163, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8f05d7", "Name": "Card", "Transform": { "posX": -13.3307552, "posY": 1.69940913, "posZ": 0.11336489, "rotX": 359.919281, "rotY": 269.999664, "rotZ": 0.0170608014, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Assassin", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560164, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "fa03c8", "Name": "Card", "Transform": { "posX": 1.69641483, "posY": 3.66958976, "posZ": 14.2788391, "rotX": 359.94812, "rotY": 224.998047, "rotZ": 0.103927828, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Egyptian Cobra", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560114, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8736a0", "Name": "Deck", "Transform": { "posX": 1.69642365, "posY": 3.69160485, "posZ": 14.2788353, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.058326114, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 231703, 231703, 231703 ], "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "ab3719", "Name": "Card", "Transform": { "posX": 0.4372875, "posY": 1.49931288, "posZ": 31.8526154, "rotX": 359.965759, "rotY": 269.994141, "rotZ": 359.713562, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hunting Shadow", "Description": "Curse.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231703, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ea8fcf", "Name": "Card", "Transform": { "posX": 0.55283767, "posY": 1.527741, "posZ": 31.3835239, "rotX": 359.868774, "rotY": 269.993958, "rotZ": 0.08241829, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hunting Shadow", "Description": "Curse.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231703, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "14bfaf", "Name": "Card", "Transform": { "posX": 0.454124451, "posY": 1.562845, "posZ": 31.28621, "rotX": 359.842865, "rotY": 269.9976, "rotZ": 0.05074867, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hunting Shadow", "Description": "Curse.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231703, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "5524d9", "Name": "Deck", "Transform": { "posX": 1.69642341, "posY": 3.68687153, "posZ": 14.2788363, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.0583262, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 3628, 3628 ], "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "1340ff", "Name": "Card", "Transform": { "posX": 9.208233, "posY": 1.49148381, "posZ": 31.5845242, "rotX": 359.921051, "rotY": 269.967468, "rotZ": 0.010626412, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locked Door", "Description": "Obstacle.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3628, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9449d7", "Name": "Card", "Transform": { "posX": 9.308699, "posY": 1.52766323, "posZ": 31.1072063, "rotX": 359.926331, "rotY": 269.967468, "rotZ": 0.01422519, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locked Door", "Description": "Obstacle.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3628, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "552e60", "Name": "Deck", "Transform": { "posX": 1.69642389, "posY": 3.69641638, "posZ": 14.2788363, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 180.058319, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560102, 560129, 560103, 560105 ], "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "db9a66", "Name": "Card", "Transform": { "posX": -17.0836353, "posY": 1.70510876, "posZ": 1.65362883, "rotX": 359.920044, "rotY": 270.0276, "rotZ": 180.0171, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Al-Azhar Mosque", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560102, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d5e928", "Name": "Card", "Transform": { "posX": -16.9262428, "posY": 1.69520116, "posZ": 1.42293966, "rotX": 359.920654, "rotY": 270.006958, "rotZ": 180.0175, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Khan El-Khalili", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560129, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "02079e", "Name": "Card", "Transform": { "posX": -17.0562611, "posY": 1.66143119, "posZ": 1.43210232, "rotX": 359.9196, "rotY": 270.00708, "rotZ": 180.02066, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Al-Azhar Park", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560103, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "be031c", "Name": "Card", "Transform": { "posX": -17.02625, "posY": 1.61919963, "posZ": 1.37130558, "rotX": 359.920166, "rotY": 270.004578, "rotZ": 180.017212, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Al-Muizz Street", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560105, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "f8e714", "Name": "Card", "Transform": { "posX": 1.69642222, "posY": 3.670134, "posZ": 14.2788363, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 180.058319, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "El'Arafa Shack", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560120, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "085ddf", "Name": "Deck", "Transform": { "posX": 1.69642532, "posY": 3.69138026, "posZ": 14.2788353, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 180.058319, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560139, 560146, 560138 ], "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "521676", "Name": "Card", "Transform": { "posX": -20.4433823, "posY": 1.66686833, "posZ": 3.968439, "rotX": 359.923035, "rotY": 270.003479, "rotZ": 180.020813, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Qala'at Salah ad-Din", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560139, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "58c08a", "Name": "Card", "Transform": { "posX": -20.537077, "posY": 1.6248486, "posZ": 3.96516013, "rotX": 359.920258, "rotY": 270.000519, "rotZ": 180.017792, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Soor el-Azbakeya", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560146, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0d970", "Name": "Card", "Transform": { "posX": -20.6078186, "posY": 1.62612534, "posZ": 7.766087, "rotX": 359.919769, "rotY": 270.000061, "rotZ": 180.013931, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Naguib Cafe", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560138, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "c86f84", "Name": "Deck", "Transform": { "posX": 1.69642532, "posY": 3.7009933, "posZ": 14.2788353, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 180.058319, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560116, 560117, 560118, 560119, 560160 ], "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "595165", "Name": "Card", "Transform": { "posX": -23.6765156, "posY": 1.7111454, "posZ": -3.82999182, "rotX": 359.9206, "rotY": 270.002472, "rotZ": 180.018936, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "El'Arafa Entrance", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560116, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "499a61", "Name": "Card", "Transform": { "posX": -23.6765518, "posY": 1.66103148, "posZ": 3.85997081, "rotX": 359.9476, "rotY": 270.0008, "rotZ": 180.034164, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "El'Arafa 1", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560117, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0a1654", "Name": "Card", "Transform": { "posX": -23.6765347, "posY": 1.62908864, "posZ": 3.86001515, "rotX": 359.9213, "rotY": 270.000427, "rotZ": 180.024887, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "El'Arafa 4", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560118, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4e3f4f", "Name": "Card", "Transform": { "posX": -23.6764431, "posY": 1.627068, "posZ": -0.0300124343, "rotX": 359.930237, "rotY": 270.000031, "rotZ": 180.083359, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "El'Arafa 3", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560119, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f17a65", "Name": "Card", "Transform": { "posX": -23.67654, "posY": 1.62694955, "posZ": -3.82999134, "rotX": 359.9201, "rotY": 270.0008, "rotZ": 180.016846, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "El'Arafa 2", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560160, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "be2521", "Name": "Bag", "Transform": { "posX": 0.08640074, "posY": 1.397459, "posZ": 3.91990185, "rotX": 359.983154, "rotY": 9.712398E-05, "rotZ": 359.919678, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Module B Tokens and Kidnappers", "Description": "Of Sphinx and Sands", "GMNotes": "", "ColorDiffuse": { "r": 0.238675356, "g": 0.779244, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "90df18", "Name": "Custom_Tile", "Transform": { "posX": -25.4284344, "posY": 2.12290215, "posZ": -96.0624542, "rotX": 0.02080709, "rotY": 269.9974, "rotZ": 0.0167755727, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/Wi3LFQ8.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e02457", "Name": "Custom_Tile", "Transform": { "posX": -25.5797462, "posY": 2.12350631, "posZ": -93.81146, "rotX": 0.0208078157, "rotY": 269.9983, "rotZ": 0.0167791042, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/eH20dYw.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c52136", "Name": "Custom_Tile", "Transform": { "posX": -25.52106, "posY": 2.12427258, "posZ": -91.26531, "rotX": 0.0208087023, "rotY": 269.998718, "rotZ": 0.01677874, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/IoWS4JN.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8d38ae", "Name": "Custom_Tile", "Transform": { "posX": -22.9467182, "posY": 2.12381959, "posZ": -96.00795, "rotX": 0.0208082981, "rotY": 269.998, "rotZ": 0.0167760029, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/eYFvXjq.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cd18ab", "Name": "Custom_Tile", "Transform": { "posX": -22.8988419, "posY": 2.12451053, "posZ": -93.70635, "rotX": 0.02080792, "rotY": 269.9987, "rotZ": 0.0167773142, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/eDazOAv.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8b12e0", "Name": "Custom_Tile", "Transform": { "posX": -23.0562286, "posY": 2.12514567, "posZ": -91.34218, "rotX": 0.0208078288, "rotY": 269.998383, "rotZ": 0.0167772584, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/kixB2qn.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e78f19", "Name": "Custom_Tile", "Transform": { "posX": -14.7574806, "posY": 3.295292, "posZ": -84.96134, "rotX": 3.87445, "rotY": 315.166016, "rotZ": 4.69578075, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8e672b", "Name": "Custom_Tile", "Transform": { "posX": -18.8636513, "posY": 3.233845, "posZ": -85.3630447, "rotX": 359.065, "rotY": 259.055817, "rotZ": 7.03649235, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2a2f1c", "Name": "Custom_Tile", "Transform": { "posX": -18.5543442, "posY": 3.70800543, "posZ": -85.13288, "rotX": 0.3154522, "rotY": 77.4520645, "rotZ": 169.584076, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a79177", "Name": "Custom_Tile", "Transform": { "posX": -18.17241, "posY": 3.67874551, "posZ": -86.97681, "rotX": 10.7072706, "rotY": 316.424469, "rotZ": 351.100342, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "04fba0", "Name": "Custom_Tile", "Transform": { "posX": -18.70299, "posY": 3.16465282, "posZ": -87.24269, "rotX": 359.167358, "rotY": 280.291748, "rotZ": 359.274719, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "045c19", "Name": "Custom_Tile", "Transform": { "posX": -20.02609, "posY": 3.390265, "posZ": -85.99343, "rotX": 5.815829, "rotY": 275.9436, "rotZ": 3.32774687, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dbf6b2", "Name": "Custom_Tile", "Transform": { "posX": -18.6658649, "posY": 3.34830618, "posZ": -83.78776, "rotX": 354.828979, "rotY": 273.5467, "rotZ": 2.64747071, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fa5356", "Name": "Custom_Tile", "Transform": { "posX": -19.6694336, "posY": 3.947674, "posZ": -85.52757, "rotX": 351.336365, "rotY": 87.64139, "rotZ": 172.39566, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4b16be", "Name": "Custom_Tile", "Transform": { "posX": -20.7103672, "posY": 3.26415062, "posZ": -84.2033539, "rotX": 0.012353098, "rotY": 315.00824, "rotZ": 0.0237052422, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f149bb", "Name": "Custom_Tile", "Transform": { "posX": -17.0587311, "posY": 3.898142, "posZ": -85.55007, "rotX": 359.8193, "rotY": 44.6647339, "rotZ": 180.062271, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3304b3", "Name": "Custom_Tile", "Transform": { "posX": -16.922987, "posY": 3.337709, "posZ": -84.42291, "rotX": 6.457207, "rotY": 229.753723, "rotZ": 8.373111, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "941a94", "Name": "Custom_Tile", "Transform": { "posX": -17.7933483, "posY": 3.05261827, "posZ": -83.8639145, "rotX": 6.205197, "rotY": 311.754425, "rotZ": 5.53737259, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1c4564", "Name": "Custom_Tile", "Transform": { "posX": -15.7775974, "posY": 3.25805736, "posZ": -86.554985, "rotX": 1.33891463, "rotY": 269.860474, "rotZ": 359.092957, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "724707", "Name": "Custom_Tile", "Transform": { "posX": -18.17228, "posY": 3.43060446, "posZ": -88.00058, "rotX": 351.142242, "rotY": 352.527954, "rotZ": 356.159882, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bca554", "Name": "Custom_Tile", "Transform": { "posX": -16.6066017, "posY": 3.65552258, "posZ": -85.63639, "rotX": 359.308868, "rotY": 90.03134, "rotZ": 179.096878, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/yDUdlkP.jpg", "ImageSecondaryURL": "https://i.imgur.com/QzYq4k8.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "26779c", "Name": "Deck", "Transform": { "posX": 8.763346, "posY": 3.60565281, "posZ": 13.7590351, "rotX": 0.3021868, "rotY": 269.998871, "rotZ": 359.561157, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560130, 560135, 560134, 560133, 560132, 560131 ], "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b919ea", "Name": "Card", "Transform": { "posX": -10.2982388, "posY": 1.61349165, "posZ": 13.9711857, "rotX": 359.9217, "rotY": 270.000549, "rotZ": 0.0168516, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kidnapper", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560130, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8a2830", "Name": "Card", "Transform": { "posX": -9.059797, "posY": 1.51369834, "posZ": 20.2767735, "rotX": 359.9203, "rotY": 270.000244, "rotZ": 0.0157452, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kidnapper", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560135, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "00e464", "Name": "Card", "Transform": { "posX": -9.032685, "posY": 1.55587506, "posZ": 20.10225, "rotX": 359.935364, "rotY": 270.000153, "rotZ": 0.0115435747, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kidnapper", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560134, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e71392", "Name": "Card", "Transform": { "posX": -9.20797, "posY": 1.590001, "posZ": 19.94131, "rotX": 359.933777, "rotY": 270.000153, "rotZ": 0.01416351, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kidnapper", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560133, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7a432f", "Name": "Card", "Transform": { "posX": -9.215909, "posY": 1.59968507, "posZ": 20.0913849, "rotX": 359.932983, "rotY": 270.000183, "rotZ": 0.0141498158, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kidnapper", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560132, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "220274", "Name": "Card", "Transform": { "posX": -8.667933, "posY": 1.60871315, "posZ": 19.9424, "rotX": 359.932922, "rotY": 270.000122, "rotZ": 0.0139077725, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kidnapper", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560131, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "d04e11", "Name": "Custom_Tile", "Transform": { "posX": 12.52581, "posY": 1.45707083, "posZ": -23.6736736, "rotX": 359.920135, "rotY": 269.996429, "rotZ": 0.0168191567, "scaleX": 6.180912, "scaleY": 1.0, "scaleZ": 6.180912 }, "Nickname": "Map of Cairo", "Description": "For reference only", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/E1YQbyi.jpg", "ImageSecondaryURL": "https://i.imgur.com/E1YQbyi.jpg", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 0, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e77543", "Name": "Card", "Transform": { "posX": -3.9560008, "posY": 1.59753942, "posZ": -10.4412012, "rotX": 359.919739, "rotY": 269.997375, "rotZ": 0.0168409329, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560110, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fefd5f", "Name": "Deck", "Transform": { "posX": -2.72489977, "posY": 1.62557471, "posZ": 0.3733004, "rotX": 0.0167899951, "rotY": 180.032516, "rotZ": 0.0802657455, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 559106, 559102, 559101, 559104 ], "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "3c2002", "Name": "Card", "Transform": { "posX": -2.724734, "posY": 1.59890652, "posZ": 0.373348445, "rotX": 0.0176626518, "rotY": 180.032761, "rotZ": 0.07459766, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 559106, "SidewaysCard": true, "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "edb186", "Name": "Card", "Transform": { "posX": -2.724803, "posY": 1.62841821, "posZ": 0.37327525, "rotX": 0.142742172, "rotY": 179.979187, "rotZ": 359.907349, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 559102, "SidewaysCard": true, "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c14aca", "Name": "Card", "Transform": { "posX": -2.724583, "posY": 1.66084921, "posZ": 0.373238444, "rotX": 0.122675478, "rotY": 180.007019, "rotZ": 0.3342695, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 559101, "SidewaysCard": true, "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "628d3d", "Name": "Card", "Transform": { "posX": -2.72471666, "posY": 1.67345679, "posZ": 0.373318732, "rotX": 0.0148238316, "rotY": 180.0001, "rotZ": 0.07747786, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 559104, "SidewaysCard": true, "CustomDeck": { "5591": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186260434/E3AD6FDE2BED182A2F96B9534F28E488A32329D9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1664608999186262561/01A5A5C135E63B2F9F714A30209C60CFDBB68DC2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "7c3cdc", "Name": "Bag", "Transform": { "posX": 11.8848009, "posY": 1.27689958, "posZ": -10.2113028, "rotX": 0.07997603, "rotY": 89.9994, "rotZ": 359.9831, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": " - Scenario Variant Cards", "Description": "Of Sphinx and Sands", "GMNotes": "", "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0ff1cd\":{\"lock\":false,\"pos\":{\"x\":2.872,\"y\":1.6083,\"z\":1.0712},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}},\"2c9d7f\":{\"lock\":false,\"pos\":{\"x\":2.7928,\"y\":1.6123,\"z\":-2.1199},\"rot\":{\"x\":359.9197,\"y\":270.0008,\"z\":0.0168}},\"578c6d\":{\"lock\":false,\"pos\":{\"x\":5.6236,\"y\":1.6047,\"z\":-6.9961},\"rot\":{\"x\":359.6302,\"y\":269.9767,\"z\":180.016}},\"a48da9\":{\"lock\":false,\"pos\":{\"x\":6.7233,\"y\":1.5153,\"z\":-6.3769},\"rot\":{\"x\":359.9193,\"y\":270.0324,\"z\":0.0178}},\"b30079\":{\"lock\":false,\"pos\":{\"x\":6.5459,\"y\":1.5894,\"z\":-0.879},\"rot\":{\"x\":357.9348,\"y\":270.0017,\"z\":0.0169}},\"c2068c\":{\"lock\":false,\"pos\":{\"x\":6.6077,\"y\":1.5563,\"z\":5.0408},\"rot\":{\"x\":357.9774,\"y\":270.0104,\"z\":0.0169}},\"d2f5ae\":{\"lock\":false,\"pos\":{\"x\":5.045,\"y\":1.6523,\"z\":3.5117},\"rot\":{\"x\":359.9195,\"y\":270.0372,\"z\":182.4439}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "0ff1cd", "Name": "Deck", "Transform": { "posX": 2.87200046, "posY": 1.60831213, "posZ": 1.0712, "rotX": 359.919739, "rotY": 269.999664, "rotZ": 0.0168387219, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560402, 560401 ], "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "30d839", "Name": "Card", "Transform": { "posX": 2.871996, "posY": 1.59133923, "posZ": 1.07120407, "rotX": 359.919952, "rotY": 269.999664, "rotZ": 0.0155513017, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Brigand - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560402, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "239817", "Name": "Card", "Transform": { "posX": 3.05842662, "posY": 1.63321662, "posZ": 0.969842, "rotX": 359.916656, "rotY": 269.998535, "rotZ": 0.01624235, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Brigand - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560401, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "2c9d7f", "Name": "Deck", "Transform": { "posX": 2.79280019, "posY": 1.61229944, "posZ": -2.11990047, "rotX": 359.919739, "rotY": 270.000763, "rotZ": 0.01683749, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560418, 560416, 560417 ], "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "6ae272", "Name": "Card", "Transform": { "posX": 12.2505169, "posY": 1.47218406, "posZ": -20.0136051, "rotX": 359.9198, "rotY": 270.000946, "rotZ": 0.0194371548, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Test of Leadership - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560418, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4c9fe6", "Name": "Card", "Transform": { "posX": 12.2505169, "posY": 1.50637186, "posZ": -20.013792, "rotX": 359.909576, "rotY": 269.9987, "rotZ": 359.848083, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Test of Leadership - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560416, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "779045", "Name": "Card", "Transform": { "posX": 12.2504959, "posY": 1.53706789, "posZ": -20.013649, "rotX": 359.922546, "rotY": 269.9994, "rotZ": 0.01574627, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Test of Leadership - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560417, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "578c6d", "Name": "Deck", "Transform": { "posX": 5.623601, "posY": 1.60471773, "posZ": -6.996101, "rotX": 359.630676, "rotY": 269.976563, "rotZ": 180.017059, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560423, 560422, 560421 ], "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "04f37d", "Name": "Card", "Transform": { "posX": 5.463995, "posY": 1.65980411, "posZ": -12.44035, "rotX": 359.764923, "rotY": 269.9669, "rotZ": 180.020889, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tunnel 1", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560423, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "81b3cd", "Name": "Card", "Transform": { "posX": 5.684554, "posY": 2.32955885, "posZ": -12.8295765, "rotX": 359.063751, "rotY": 269.989044, "rotZ": 179.8962, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tunnel 2", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560422, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e3ed1a", "Name": "Card", "Transform": { "posX": 5.44772863, "posY": 1.92809176, "posZ": -13.27393, "rotX": 343.2607, "rotY": 271.199219, "rotZ": 179.705521, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tunnel 3", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560421, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "a48da9", "Name": "Deck", "Transform": { "posX": 6.72330141, "posY": 1.515259, "posZ": -6.376901, "rotX": 359.9201, "rotY": 270.0323, "rotZ": 0.0168146789, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560408, 560408, 560408, 560408, 560413 ], "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b59114", "Name": "Card", "Transform": { "posX": 6.04704762, "posY": 1.62651384, "posZ": -28.4289722, "rotX": 359.91626, "rotY": 270.0031, "rotZ": 177.944565, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ghoul Attendant - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560408, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b07716", "Name": "Card", "Transform": { "posX": 2.63251233, "posY": 1.53446782, "posZ": -23.3842163, "rotX": 359.9163, "rotY": 269.9992, "rotZ": 0.0247544181, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ghoul Attendant - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560408, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c111f6", "Name": "Card", "Transform": { "posX": 2.6193912, "posY": 1.56158221, "posZ": -23.3593674, "rotX": 359.909454, "rotY": 269.9992, "rotZ": 0.0276632868, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ghoul Attendant - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560408, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "47705f", "Name": "Card", "Transform": { "posX": 3.28950143, "posY": 1.48303342, "posZ": -25.4525757, "rotX": 359.920135, "rotY": 269.999237, "rotZ": 0.0168733411, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ghoul Attendant - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560408, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c053c2", "Name": "Card", "Transform": { "posX": 6.09814548, "posY": 1.57335591, "posZ": -28.285677, "rotX": 359.919342, "rotY": 269.9984, "rotZ": 0.01563539, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Queen Nitokris - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560413, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "b30079", "Name": "Deck", "Transform": { "posX": 6.545901, "posY": 1.58940136, "posZ": -0.87899977, "rotX": 357.934418, "rotY": 270.00177, "rotZ": 0.01689777, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560410, 560411, 560412, 560415, 560400, 560414, 560405, 560403, 560404 ], "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b6fffa", "Name": "Card", "Transform": { "posX": 8.867447, "posY": 1.47383916, "posZ": -30.1989346, "rotX": 359.920349, "rotY": 269.999542, "rotZ": 0.0154936323, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Homeless Child - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560410, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a93d5f", "Name": "Card", "Transform": { "posX": 9.30781651, "posY": 1.51537383, "posZ": -30.2915668, "rotX": 359.915466, "rotY": 269.999573, "rotZ": 0.01690497, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Homeless Child - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560411, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3f2dd2", "Name": "Card", "Transform": { "posX": 8.819968, "posY": 1.55007827, "posZ": -29.6807632, "rotX": 359.938019, "rotY": 270.0, "rotZ": 0.009326569, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Qala'at Salah ad-Din - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560412, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dbaf13", "Name": "Card", "Transform": { "posX": 8.836316, "posY": 1.5593394, "posZ": -29.5420551, "rotX": 359.9475, "rotY": 269.9999, "rotZ": 359.953827, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Snarling Jackal - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560415, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7ef3a7", "Name": "Card", "Transform": { "posX": 8.637006, "posY": 1.474911, "posZ": -27.6720562, "rotX": 359.920258, "rotY": 269.999725, "rotZ": 0.01594295, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Book of Islamic Meditation", "Description": "Tome", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560400, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b13370", "Name": "Card", "Transform": { "posX": 8.589288, "posY": 1.51711273, "posZ": -27.5773449, "rotX": 359.9238, "rotY": 269.999939, "rotZ": 0.0118075265, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rolls of Papyrus", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560414, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f6be88", "Name": "Card", "Transform": { "posX": 8.860467, "posY": 1.58843684, "posZ": -30.44822, "rotX": 359.920044, "rotY": 269.997559, "rotZ": 0.0165866222, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "El Arafa 4 - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560405, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4cd7b9", "Name": "Card", "Transform": { "posX": 12.2496176, "posY": 1.46970522, "posZ": -28.01372, "rotX": 359.920929, "rotY": 269.998962, "rotZ": 0.0114107737, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cutpurse - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560403, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "759e2a", "Name": "Card", "Transform": { "posX": 12.2495127, "posY": 1.499496, "posZ": -28.0135937, "rotX": 0.0344035253, "rotY": 269.999573, "rotZ": 359.860046, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cutpurse - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560404, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "c2068c", "Name": "Deck", "Transform": { "posX": 6.60770226, "posY": 1.55626953, "posZ": 5.04080439, "rotX": 357.975983, "rotY": 270.010529, "rotZ": 0.0167895816, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 560500, 560501 ], "CustomDeck": { "5605": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784911015802/2D6E0DD4087F9064808B6EE9524F2180F0CFB5EC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784911016423/9F4D63BC5ADF729944CDF6965633E93EEF1636B3/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "a55f1f", "Name": "Card", "Transform": { "posX": -2.34612513, "posY": 1.59763324, "posZ": -2.41907167, "rotX": 359.91983, "rotY": 269.999939, "rotZ": 0.0162438545, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Exploring The Egyptian Wing - Museum", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560500, "SidewaysCard": true, "CustomDeck": { "5605": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784911015802/2D6E0DD4087F9064808B6EE9524F2180F0CFB5EC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784911016423/9F4D63BC5ADF729944CDF6965633E93EEF1636B3/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "427102", "Name": "Card", "Transform": { "posX": -2.20713568, "posY": 1.639841, "posZ": -2.22001863, "rotX": 359.9386, "rotY": 270.017944, "rotZ": 0.0266080648, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Locked Museum - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560501, "SidewaysCard": true, "CustomDeck": { "5605": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784911015802/2D6E0DD4087F9064808B6EE9524F2180F0CFB5EC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784911016423/9F4D63BC5ADF729944CDF6965633E93EEF1636B3/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "d2f5ae", "Name": "Deck", "Transform": { "posX": 5.04500151, "posY": 1.65220881, "posZ": 3.51170444, "rotX": 359.9194, "rotY": 270.0373, "rotZ": 182.4403, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 560420, 560419 ], "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "773b0b", "Name": "Card", "Transform": { "posX": 5.37984848, "posY": 1.6944778, "posZ": 8.977251, "rotX": 356.1381, "rotY": 270.028748, "rotZ": 180.014725, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Hieroglyphs - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560420, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bf9cc1", "Name": "Card", "Transform": { "posX": 5.568775, "posY": 1.57027578, "posZ": 9.010219, "rotX": 356.914948, "rotY": 270.011475, "rotZ": 180.0169, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Artifact Room - Variant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560419, "SidewaysCard": false, "CustomDeck": { "5604": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910951973/152DB8A6785AE3E5056B56C721BB3EDFDADD060B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910952364/F8B43BBE61E5D34E332F6E28A2B82943D11CF0FD/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "a3da91", "Name": "Custom_PDF", "Transform": { "posX": -0.9527009, "posY": 1.26108, "posZ": 56.0573, "rotX": 0.0208031256, "rotY": 270.0182, "rotZ": 0.0167778842, "scaleX": 5.532623, "scaleY": 1.0, "scaleZ": 5.532623 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomPDF": { "PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1705159835343229513/E2B7DAE9CC936648A92830ADE3C9DEA4E781573A/", "PDFPassword": "", "PDFPage": 0, "PDFPageOffset": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e54f2a", "Name": "Bag", "Transform": { "posX": 12.1996021, "posY": 1.280603, "posZ": 3.85599971, "rotX": 0.07996323, "rotY": 89.9952, "rotZ": 359.9831, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": " - Scenario 1: Eye on the Prize ", "Description": "Of Sphinx and Sands", "GMNotes": "", "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"1607e4\":{\"lock\":false,\"pos\":{\"x\":-27.1293,\"y\":1.6193,\"z\":0.1104},\"rot\":{\"x\":359.9201,\"y\":269.9968,\"z\":0.0169}},\"18bc07\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9998,\"z\":0.0803}},\"202fb8\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"31d169\":{\"lock\":false,\"pos\":{\"x\":-20.3846,\"y\":1.6111,\"z\":3.9984},\"rot\":{\"x\":359.9316,\"y\":315.0045,\"z\":359.9554}},\"3cbb4c\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9994,\"z\":0.0687}},\"4c31ac\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.6722,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"5babd7\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6133,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0081,\"z\":0.0799}},\"62e231\":{\"lock\":false,\"pos\":{\"x\":-8.7228,\"y\":1.635,\"z\":3.9203},\"rot\":{\"x\":359.922,\"y\":269.9999,\"z\":180.0167}},\"7d9810\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":180.0113,\"z\":0.0803}},\"89ef85\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9982,\"z\":0.0168}},\"a7a597\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6178,\"z\":11.46},\"rot\":{\"x\":0.0168,\"y\":180.0087,\"z\":0.0799}},\"b0eb9f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"b17da9\":{\"lock\":false,\"pos\":{\"x\":-8.4892,\"y\":1.6356,\"z\":7.1848},\"rot\":{\"x\":359.9219,\"y\":269.9904,\"z\":0.0166}},\"b5fb08\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6325,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"bb0c48\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0076,\"z\":180.0168}},\"bbac14\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"de12a0\":{\"lock\":false,\"pos\":{\"x\":-20.7708,\"y\":1.6104,\"z\":-0.1736},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"e466bf\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.008,\"z\":0.0799}},\"ef3db9\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "3cbb4c", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69650078, "posY": 1.55831575, "posZ": 14.2788019, "rotX": 359.955139, "rotY": 224.999435, "rotZ": 0.0686719, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "1a027d", "Name": "Deck", "Transform": { "posX": 1.69642341, "posY": 3.69652748, "posZ": 14.2788363, "rotX": 359.948059, "rotY": 224.998062, "rotZ": 0.0583114736, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266423, 266423, 266423, 266423 ], "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d9c987", "Name": "Card", "Transform": { "posX": -4.07034063, "posY": 1.50643122, "posZ": 19.2072, "rotX": 359.920258, "rotY": 269.998077, "rotZ": 0.0159878731, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guard's Flashlight", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266423, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "771e89", "Name": "Card", "Transform": { "posX": -3.91021, "posY": 1.54846609, "posZ": 19.13883, "rotX": 359.935028, "rotY": 269.998077, "rotZ": 0.0110992426, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guard's Flashlight", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266423, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5c8128", "Name": "Card", "Transform": { "posX": -4.09629154, "posY": 1.5826714, "posZ": 19.1713314, "rotX": 359.933533, "rotY": 269.9981, "rotZ": 0.013884617, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guard's Flashlight", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266423, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1802a3", "Name": "Card", "Transform": { "posX": -0.4081925, "posY": 1.68213916, "posZ": 18.549057, "rotX": 359.93277, "rotY": 269.999817, "rotZ": 359.2912, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guard's Flashlight", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266423, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "64207c", "Name": "Card", "Transform": { "posX": 13.552434, "posY": 3.5489254, "posZ": 6.27402544, "rotX": 359.9201, "rotY": 270.0141, "rotZ": 0.0168677978, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Eye of Horus", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560151, "SidewaysCard": false, "CustomDeck": { "5601": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779029/96541B8D27260AE2D7DA0A6B21C01045996AEA25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159784910779831/CD27A4FE3D09BA829770C454B638880B146A42BE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bb1f46", "Name": "Deck", "Transform": { "posX": 15.2737045, "posY": 3.58859, "posZ": 33.34393, "rotX": 0.0317135677, "rotY": 225.008453, "rotZ": 0.122339591, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266435, 266408, 266406, 3628, 3628 ], "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "1dde74", "Name": "Card", "Transform": { "posX": -3.746549, "posY": 1.89273083, "posZ": 15.2328186, "rotX": 359.91983, "rotY": 269.999023, "rotZ": 0.0169435125, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Eye of Horus", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266435, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6253b2", "Name": "Card", "Transform": { "posX": -3.91426945, "posY": 1.921852, "posZ": 15.1926556, "rotX": 359.920471, "rotY": 269.999146, "rotZ": 0.016910946, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Assassin", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266408, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e2cde3", "Name": "Card", "Transform": { "posX": -3.76527047, "posY": 1.94105566, "posZ": 15.8497648, "rotX": 359.920624, "rotY": 269.999268, "rotZ": 0.0161118116, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Adept", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266406, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9449d7", "Name": "Card", "Transform": { "posX": 9.783859, "posY": 1.62524831, "posZ": 33.15697, "rotX": 359.932953, "rotY": 269.997253, "rotZ": 0.0138998264, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locked Door", "Description": "Obstacle.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 3628, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1340ff", "Name": "Card", "Transform": { "posX": 9.592096, "posY": 1.63515091, "posZ": 33.2726555, "rotX": 359.933136, "rotY": 269.997253, "rotZ": 0.013753131, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locked Door", "Description": "Obstacle.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 3628, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "87a3be", "Name": "Deck", "Transform": { "posX": 1.69641638, "posY": 3.77702641, "posZ": 14.2788363, "rotX": 359.94812, "rotY": 224.997437, "rotZ": 356.51062, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 3632, 3618, 3618, 3619, 3619, 3621, 3621 ], "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "153bb1", "Name": "Card", "Transform": { "posX": -5.3692317, "posY": 1.58340347, "posZ": 18.01206, "rotX": 359.916046, "rotY": 270.007874, "rotZ": 356.296051, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Offer of Power", "Description": "Pact.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3632, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c40f57", "Name": "Card", "Transform": { "posX": -5.013851, "posY": 1.62013888, "posZ": 17.8578072, "rotX": 359.632324, "rotY": 269.985, "rotZ": 356.391754, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frozen in Fear", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3618, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "27c05d", "Name": "Card", "Transform": { "posX": -5.47193146, "posY": 1.66179466, "posZ": 18.8419743, "rotX": 359.93222, "rotY": 270.00238, "rotZ": 359.275146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frozen in Fear", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3618, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "260768", "Name": "Card", "Transform": { "posX": -5.33102226, "posY": 1.72947335, "posZ": 17.7897282, "rotX": 359.931976, "rotY": 270.0002, "rotZ": 359.3072, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dissonant Voices", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3619, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f1a34d", "Name": "Card", "Transform": { "posX": -5.254643, "posY": 1.70236409, "posZ": 18.4239845, "rotX": 359.9319, "rotY": 270.002319, "rotZ": 358.993134, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dissonant Voices", "Description": "Terror.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3619, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b78c3b", "Name": "Card", "Transform": { "posX": -5.23932, "posY": 1.73225057, "posZ": 18.1859341, "rotX": 359.931946, "rotY": 270.002319, "rotZ": 359.1811, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crypt Chill", "Description": "Hazard.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3621, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fb311c", "Name": "Card", "Transform": { "posX": -5.83167934, "posY": 1.75236285, "posZ": 18.1578751, "rotX": 359.919067, "rotY": 269.999573, "rotZ": 359.465057, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crypt Chill", "Description": "Hazard.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3621, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "763a70", "Name": "Deck", "Transform": { "posX": 1.69642425, "posY": 3.73485947, "posZ": 14.2788353, "rotX": 359.948059, "rotY": 224.998062, "rotZ": 0.0583110526, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266409, 266410, 266411, 266401, 266400, 266418, 266407, 3625, 3625, 3623, 3623, 3623 ], "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 }, "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "fe9a7a", "Name": "Card", "Transform": { "posX": -5.277409, "posY": 1.76958156, "posZ": 15.479888, "rotX": 359.936951, "rotY": 270.0, "rotZ": 180.014328, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Assassin", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266409, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eb397b", "Name": "Card", "Transform": { "posX": -5.15240669, "posY": 1.75995779, "posZ": 15.4161978, "rotX": 359.93692, "rotY": 270.0, "rotZ": 180.006958, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Brigand", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266410, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "043553", "Name": "Card", "Transform": { "posX": -4.58415031, "posY": 1.78048635, "posZ": 15.0227728, "rotX": 359.9518, "rotY": 269.997955, "rotZ": 182.527435, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Brigand", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266411, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e3be6b", "Name": "Card", "Transform": { "posX": -4.779913, "posY": 1.74025142, "posZ": 15.50784, "rotX": 359.9365, "rotY": 270.0001, "rotZ": 179.972443, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Echoing Footsteps", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266401, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6d2c73", "Name": "Card", "Transform": { "posX": -4.480667, "posY": 1.74888611, "posZ": 15.6776447, "rotX": 359.935852, "rotY": 270.0008, "rotZ": 178.850723, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Echoing Footsteps", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266400, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b01470", "Name": "Card", "Transform": { "posX": -4.748598, "posY": 1.72089231, "posZ": 15.1638231, "rotX": 359.935516, "rotY": 269.999969, "rotZ": 179.974823, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Golem", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266418, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5ca3c3", "Name": "Card", "Transform": { "posX": -4.52860451, "posY": 1.71205831, "posZ": 15.3935423, "rotX": 359.936157, "rotY": 270.000061, "rotZ": 179.876068, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alarm!", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266407, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6f5b7b", "Name": "Card", "Transform": { "posX": -4.57133865, "posY": 1.7017796, "posZ": 15.4890633, "rotX": 359.936279, "rotY": 270.000061, "rotZ": 179.938583, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mysterious Chanting", "Description": "Hex.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3625, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "df668b", "Name": "Card", "Transform": { "posX": -4.89557934, "posY": 1.69322622, "posZ": 15.3440714, "rotX": 359.9355, "rotY": 270.000122, "rotZ": 179.876129, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mysterious Chanting", "Description": "Hex.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3625, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c70e63", "Name": "Card", "Transform": { "posX": -4.59107447, "posY": 1.69831824, "posZ": 15.29977, "rotX": 359.9358, "rotY": 270.000244, "rotZ": 179.11235, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3623, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4072d7", "Name": "Card", "Transform": { "posX": -4.46468544, "posY": 1.64950562, "posZ": 15.134223, "rotX": 359.925934, "rotY": 269.9996, "rotZ": 179.8507, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3623, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "492e5e", "Name": "Card", "Transform": { "posX": -4.681678, "posY": 1.60617208, "posZ": 15.46691, "rotX": 359.919769, "rotY": 269.999725, "rotZ": 180.0167, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "Description": "Humanoid. Cultist.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 3623, "SidewaysCard": false, "CustomDeck": { "36": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "6ad90c", "Name": "Deck", "Transform": { "posX": 1.696417, "posY": 3.69772, "posZ": 14.2788372, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 180.058319, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266439, 266417, 266432, 266434 ], "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "1eb566", "Name": "Card", "Transform": { "posX": -12.9570913, "posY": 1.73936629, "posZ": 9.947946, "rotX": 359.920044, "rotY": 270.013763, "rotZ": 178.047455, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Sarcophagus Room", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266439, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2e329c", "Name": "Card", "Transform": { "posX": -13.4465427, "posY": 1.73111081, "posZ": 10.0460691, "rotX": 359.9208, "rotY": 270.002136, "rotZ": 178.022552, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Egyptian Culture Room", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266417, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "af0460", "Name": "Card", "Transform": { "posX": -13.1172457, "posY": 1.65854406, "posZ": 10.1609926, "rotX": 359.9189, "rotY": 270.000336, "rotZ": 180.020981, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Outside", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266432, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9f2095", "Name": "Card", "Transform": { "posX": -13.2371264, "posY": 1.61651742, "posZ": 10.2174053, "rotX": 359.920166, "rotY": 269.999969, "rotZ": 180.01709, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Artifact Room", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266434, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "4c31ac", "Name": "Deck", "Transform": { "posX": -3.92780018, "posY": 1.67216814, "posZ": 5.75720024, "rotX": 359.919739, "rotY": 269.999939, "rotZ": 0.016841827, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 231704, 231704, 266403, 266402, 266426, 266425, 266424, 231712, 231712, 231712, 266405, 266404, 266412 ], "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "2ceae2", "Name": "Card", "Transform": { "posX": -3.927681, "posY": 1.60217249, "posZ": 5.757142, "rotX": 359.920746, "rotY": 270.000031, "rotZ": 0.0108668739, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "False Lead", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231704, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "057d5f", "Name": "Card", "Transform": { "posX": -3.92768073, "posY": 1.63289452, "posZ": 5.75714731, "rotX": 359.893, "rotY": 269.999878, "rotZ": 0.00363915344, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "False Lead", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231704, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8020e3", "Name": "Card", "Transform": { "posX": -3.927698, "posY": 1.69007874, "posZ": 5.757144, "rotX": 359.919647, "rotY": 269.991455, "rotZ": 0.0171338525, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "It Moved!", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266403, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "41a3e9", "Name": "Card", "Transform": { "posX": -3.927697, "posY": 1.6995486, "posZ": 5.757144, "rotX": 359.919647, "rotY": 269.991455, "rotZ": 0.0171450116, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "It Moved!", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266402, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8a4d73", "Name": "Card", "Transform": { "posX": -3.92769814, "posY": 1.7093693, "posZ": 5.757144, "rotX": 359.919647, "rotY": 269.991425, "rotZ": 0.0171207357, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lapse of Concentration", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266426, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1ef218", "Name": "Card", "Transform": { "posX": -3.92769742, "posY": 1.718873, "posZ": 5.757144, "rotX": 359.919647, "rotY": 269.991425, "rotZ": 0.0171180032, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Knocked Over", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266425, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b5739e", "Name": "Card", "Transform": { "posX": -3.92769718, "posY": 1.72844625, "posZ": 5.757144, "rotX": 359.919647, "rotY": 269.991425, "rotZ": 0.01712839, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Knocked Over", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266424, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ab3719", "Name": "Card", "Transform": { "posX": 40.3420448, "posY": 1.52709389, "posZ": 35.1802521, "rotX": 359.940247, "rotY": 269.999969, "rotZ": 180.017731, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Swarm of Rats", "Description": "Creature.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231712, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a2cf85", "Name": "Card", "Transform": { "posX": 40.3592453, "posY": 1.49337173, "posZ": 35.95154, "rotX": 359.941223, "rotY": 269.999969, "rotZ": 180.018234, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Swarm of Rats", "Description": "Creature.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231712, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ab3719", "Name": "Card", "Transform": { "posX": 40.13347, "posY": 1.44970012, "posZ": 35.8066368, "rotX": 359.9202, "rotY": 270.000061, "rotZ": 180.017365, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Swarm of Rats", "Description": "Creature.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 231712, "SidewaysCard": false, "CustomDeck": { "2317": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c94ce1", "Name": "Card", "Transform": { "posX": -5.43568563, "posY": 1.50920951, "posZ": 22.1284313, "rotX": 359.9202, "rotY": 269.9914, "rotZ": 0.01686513, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tricks of Shadows", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266405, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "86672c", "Name": "Card", "Transform": { "posX": 8.613848, "posY": 1.66456, "posZ": 31.0901089, "rotX": 359.934235, "rotY": 270.000244, "rotZ": 0.0125579415, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tricks of Shadows", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266404, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "be4387", "Name": "Card", "Transform": { "posX": 11.7129183, "posY": 1.65573776, "posZ": 15.7725706, "rotX": 359.919861, "rotY": 270.000061, "rotZ": 0.016511092, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Choose", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266412, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "7d9810", "Name": "Deck", "Transform": { "posX": -2.7247, "posY": 1.62076044, "posZ": 0.37340042, "rotX": 0.0168198571, "rotY": 180.011276, "rotZ": 0.0802592561, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 560600, 560605, 560604 ], "CustomDeck": { "5606": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237299803/E0B566DEFB0390F19AAC3DED089BB26830A1A079/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159835342798157/35E9B38588E5F0BFCDB119025F8056050B5D39F9/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "c18fa5", "Name": "Card", "Transform": { "posX": -14.74946, "posY": 1.61660421, "posZ": 3.47344756, "rotX": 0.01731888, "rotY": 179.999725, "rotZ": 0.0769323558, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560600, "SidewaysCard": true, "CustomDeck": { "5606": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237299803/E0B566DEFB0390F19AAC3DED089BB26830A1A079/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159835342798157/35E9B38588E5F0BFCDB119025F8056050B5D39F9/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7b966b", "Name": "Card", "Transform": { "posX": -14.8543806, "posY": 1.61515677, "posZ": -2.04462123, "rotX": 0.0164710376, "rotY": 180.377975, "rotZ": 0.0789511, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560605, "SidewaysCard": true, "CustomDeck": { "5606": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237299803/E0B566DEFB0390F19AAC3DED089BB26830A1A079/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159835342798157/35E9B38588E5F0BFCDB119025F8056050B5D39F9/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "01803c", "Name": "Card", "Transform": { "posX": -2.72471428, "posY": 1.66371739, "posZ": 0.3733156, "rotX": 0.0186364073, "rotY": 179.9995, "rotZ": 0.08223432, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560604, "SidewaysCard": true, "CustomDeck": { "5606": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237299803/E0B566DEFB0390F19AAC3DED089BB26830A1A079/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159835342798157/35E9B38588E5F0BFCDB119025F8056050B5D39F9/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "18bc07", "Name": "Deck", "Transform": { "posX": -2.68849969, "posY": 1.61911654, "posZ": -5.04850054, "rotX": 0.0168358888, "rotY": 179.999847, "rotZ": 0.08025589, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 560603, 560602, 560601 ], "CustomDeck": { "5606": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237299803/E0B566DEFB0390F19AAC3DED089BB26830A1A079/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159835342798157/35E9B38588E5F0BFCDB119025F8056050B5D39F9/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "0c0079", "Name": "Card", "Transform": { "posX": -2.68855429, "posY": 1.59734869, "posZ": -5.04852772, "rotX": 0.0168360379, "rotY": 180.000015, "rotZ": 0.08025429, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560603, "SidewaysCard": true, "CustomDeck": { "5606": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237299803/E0B566DEFB0390F19AAC3DED089BB26830A1A079/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159835342798157/35E9B38588E5F0BFCDB119025F8056050B5D39F9/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c1ed7b", "Name": "Card", "Transform": { "posX": -2.68854427, "posY": 1.64616156, "posZ": -5.04852962, "rotX": 0.013484343, "rotY": 180.000015, "rotZ": 359.907379, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560602, "SidewaysCard": true, "CustomDeck": { "5606": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237299803/E0B566DEFB0390F19AAC3DED089BB26830A1A079/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159835342798157/35E9B38588E5F0BFCDB119025F8056050B5D39F9/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bec7eb", "Name": "Card", "Transform": { "posX": -2.68853784, "posY": 1.66213751, "posZ": -5.04854536, "rotX": 0.0126987509, "rotY": 179.999481, "rotZ": 0.08632709, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 560601, "SidewaysCard": true, "CustomDeck": { "5606": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237299803/E0B566DEFB0390F19AAC3DED089BB26830A1A079/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159835342798157/35E9B38588E5F0BFCDB119025F8056050B5D39F9/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "89ef85", "Name": "Card", "Transform": { "posX": -3.956, "posY": 1.59753942, "posZ": -10.4412022, "rotX": 359.919739, "rotY": 269.9982, "rotZ": 0.0168397333, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266440, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "62e231", "Name": "Deck", "Transform": { "posX": -8.7228, "posY": 1.63498056, "posZ": 3.92030144, "rotX": 359.922, "rotY": 269.999939, "rotZ": 180.016739, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266413, 266414, 266415, 266416 ], "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "7f9e24", "Name": "Card", "Transform": { "posX": -32.88676, "posY": 1.72798061, "posZ": 4.13929844, "rotX": 359.933167, "rotY": 270.0, "rotZ": 180.014389, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Docent", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266413, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "918284", "Name": "Card", "Transform": { "posX": -11.0017338, "posY": 1.65507591, "posZ": 1.39946723, "rotX": 359.91925, "rotY": 269.987457, "rotZ": 0.0144096632, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Docent", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266414, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ef0687", "Name": "Card", "Transform": { "posX": -10.7473841, "posY": 1.68862975, "posZ": 1.33833933, "rotX": 359.9198, "rotY": 269.987457, "rotZ": 0.0163757857, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Docent", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266415, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1ce30a", "Name": "Card", "Transform": { "posX": -10.6302872, "posY": 1.69815135, "posZ": 1.55480886, "rotX": 359.9196, "rotY": 269.9875, "rotZ": 0.0160589647, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Docent", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266416, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "b17da9", "Name": "Deck", "Transform": { "posX": -8.489201, "posY": 1.63562036, "posZ": 7.184799, "rotX": 359.921875, "rotY": 269.990417, "rotZ": 0.0166092161, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266429, 266429, 266429, 266429 ], "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "f3d106", "Name": "Card", "Transform": { "posX": -8.574067, "posY": 1.51375806, "posZ": 22.7285671, "rotX": 359.920166, "rotY": 269.991364, "rotZ": 0.0167436749, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Museum Guard", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266429, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0bdec0", "Name": "Card", "Transform": { "posX": -8.431129, "posY": 1.55783927, "posZ": 22.7860413, "rotX": 359.9194, "rotY": 269.9914, "rotZ": 0.0147633925, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Museum Guard", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266429, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2281a2", "Name": "Card", "Transform": { "posX": -8.666857, "posY": 1.59221876, "posZ": 23.2151833, "rotX": 359.919952, "rotY": 269.991364, "rotZ": 0.0163279381, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Museum Guard", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266429, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d69256", "Name": "Card", "Transform": { "posX": -8.423396, "posY": 1.69422531, "posZ": 5.489757, "rotX": 359.920929, "rotY": 269.998016, "rotZ": 0.0178249963, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Museum Guard", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266429, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "b0eb9f", "Name": "Card", "Transform": { "posX": -17.12, "posY": 1.6189239, "posZ": -0.02999953, "rotX": 359.9201, "rotY": 269.9999, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Museum_Entrance", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266427, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "de12a0", "Name": "Custom_Tile", "Transform": { "posX": -20.7707977, "posY": 1.61036777, "posZ": -0.1736005, "rotX": 359.9201, "rotY": 269.9999, "rotZ": 0.0168691985, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "31d169", "Name": "Custom_Tile", "Transform": { "posX": -20.3846, "posY": 1.61105537, "posZ": 3.99840045, "rotX": 359.9316, "rotY": 315.004517, "rotZ": 359.9554, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "ef3db9", "Name": "Card", "Transform": { "posX": -23.6766, "posY": 1.63030028, "posZ": 7.5700016, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Renaissance Gallery", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266433, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a7a597", "Name": "Custom_Tile", "Transform": { "posX": -23.6765, "posY": 1.61783838, "posZ": 11.46, "rotX": 0.01682712, "rotY": 180.0087, "rotZ": 0.07994216, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "b5fb08", "Name": "Card", "Transform": { "posX": -23.6766, "posY": 1.63253963, "posZ": 15.19, "rotX": 359.9201, "rotY": 270.0, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Modern Gallery", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266438, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e466bf", "Name": "Custom_Tile", "Transform": { "posX": -23.6765, "posY": 1.61560476, "posZ": 3.86000061, "rotX": 0.01682807, "rotY": 180.008011, "rotZ": 0.0799384862, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "bbac14", "Name": "Card", "Transform": { "posX": -23.6765, "posY": 1.62806654, "posZ": -0.0299995337, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Greco Roman Exhibit", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266419, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5babd7", "Name": "Custom_Tile", "Transform": { "posX": -23.6765, "posY": 1.61334479, "posZ": -3.82999969, "rotX": 0.01682786, "rotY": 180.008148, "rotZ": 0.0799412355, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "bb0c48", "Name": "Card", "Transform": { "posX": -23.6766, "posY": 1.62581253, "posZ": -7.70000029, "rotX": 359.9201, "rotY": 270.007629, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Medieval Exhibit", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266437, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1607e4", "Name": "Custom_Tile", "Transform": { "posX": -27.1293, "posY": 1.61931753, "posZ": 0.110399731, "rotX": 359.9201, "rotY": 269.9968, "rotZ": 0.0168717466, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "202fb8", "Name": "Card", "Transform": { "posX": -30.2243, "posY": 1.637197, "posZ": -0.0299997777, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Hieroglyphs", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266436, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237148066/D79C84687771ACF533CC6A8CD65A5F638D71DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1705159703237158290/F0A7815A1AB109CE6EBF08695540CADDA0255C79/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "eda22b", "Name": "Custom_Token", "Transform": { "posX": -5.0775013, "posY": 1.580223, "posZ": -28.40841, "rotX": 359.920135, "rotY": 269.99295, "rotZ": 0.0168814, "scaleX": 5.189041, "scaleY": 1.0, "scaleZ": 5.189041 }, "Nickname": "Campaign Log", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/1461933996971313209/41F80D2AA21C2C7CFBA74D3F7025C987637BCC16/", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": false } }, "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --1st Player Experience\r\n {\r\n pos = {-1.080,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --1st Player Physical Trauma\r\n {\r\n pos = {-1.270,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --1st Player Mental Trauma\r\n {\r\n pos = {-1.000,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2nd Player Experience\r\n {\r\n pos = {-0.251,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2nd Player Physical Trauma\r\n {\r\n pos = {-0.441,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2nd Player Mental Trauma\r\n {\r\n pos = {-0.171,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3rd Player Experience\r\n {\r\n pos = {0.579,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3rd Player Physical Trauma\r\n {\r\n pos = {0.389,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3rd Player Mental Trauma\r\n {\r\n pos = {0.659,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4th Player Experience\r\n {\r\n pos = {1.407,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4th Player Physical Trauma\r\n {\r\n pos = {1.217,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4th Player Mental Trauma\r\n {\r\n pos = {1.487,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --1st Player Name\r\n {\r\n pos = {-1.265,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --1st Player Investigator\r\n {\r\n pos = {-1.265,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --1st Player Story Assets/Weaknesses\r\n {\r\n pos = {-1.265,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --2nd Player Name\r\n {\r\n pos = {-0.436,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --2nd Player Investigator\r\n {\r\n pos = {-0.436,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --2nd Player Story Assets/Weaknesses\r\n {\r\n pos = {-0.436,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --3rd Player Name\r\n {\r\n pos = {0.394,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --3rd Player Investigator\r\n {\r\n pos = {0.394,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --3rd Player Story Assets/Weaknesses\r\n {\r\n pos = {0.394,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --4th Player Name\r\n {\r\n pos = {1.222,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --4th Player Investigator\r\n {\r\n pos = {1.222,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --4th Player Story Assets/Weaknesses\r\n {\r\n pos = {1.222,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 1\r\n {\r\n pos = {-0.930,0.1,0.930},\r\n rows = 27,\r\n width = 7800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 2\r\n {\r\n pos = {0.820,0.1,0.707},\r\n rows = 20,\r\n width = 7800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Killed and Insane Investigators\r\n {\r\n pos = {1.010,0.1,1.700},\r\n rows = 5,\r\n width = 7400,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend\r\n", "LuaScriptState": "{\"checkbox\":[],\"counter\":[{\"hideBG\":true,\"pos\":[-1.08,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[-1.27,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[-1,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[-0.251,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[-0.441,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[-0.171,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[0.579,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[0.389,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[0.659,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[1.407,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[1.217,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[1.487,0.1,-0.79],\"size\":600,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-1.265,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-1.265,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-1.265,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.436,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.436,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.436,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.394,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.394,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.394,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.222,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.222,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.222,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.93,0.1,0.93],\"rows\":27,\"value\":\"\",\"width\":7800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.82,0.1,0.707],\"rows\":20,\"value\":\"\",\"width\":7800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.01,0.1,1.7],\"rows\":5,\"value\":\"\",\"width\":7400}]}", "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 } } ] }