{ "GUID": "4d305a", "Name": "Custom_Model_Bag", "Transform": { "posX": 0.588461459, "posY": 1.49999833, "posZ": 42.5164948, "rotX": -3.46167144E-06, "rotY": 269.999969, "rotZ": -4.48139544E-05, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "Celtic Rising", "Description": "5 Scenario Custom Cycle", "GMNotes": "fancreations/campaign_celtic_rising.json", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754685726010541421/DC8223A713D02261326877B51FC717A9BAA217B8/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CustomShader": { "SpecularColor": { "r": 1.0, "g": 1.0, "b": 1.0 }, "SpecularIntensity": 0.0, "SpecularSharpness": 2.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"055532\":{\"lock\":false,\"pos\":{\"x\":8.8257,\"y\":1.4645,\"z\":-15.8276},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"072acf\":{\"lock\":false,\"pos\":{\"x\":9.0112,\"y\":1.4698,\"z\":3.0492},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1da86b\":{\"lock\":false,\"pos\":{\"x\":8.8915,\"y\":1.4662,\"z\":-9.7687},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"40367b\":{\"lock\":false,\"pos\":{\"x\":-7.2477,\"y\":1.4833,\"z\":-28.3811},\"rot\":{\"x\":359.9201,\"y\":270.0154,\"z\":0.0169}},\"446d4c\":{\"lock\":false,\"pos\":{\"x\":8.9866,\"y\":1.4718,\"z\":9.4227},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"4786a5\":{\"lock\":false,\"pos\":{\"x\":9.0784,\"y\":1.4735,\"z\":15.6658},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"55bcca\":{\"lock\":false,\"pos\":{\"x\":9.0606,\"y\":1.4679,\"z\":-3.2898},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"92ee5a\":{\"lock\":false,\"pos\":{\"x\":0.1554,\"y\":1.6281,\"z\":-10.3087},\"rot\":{\"x\":359.9197,\"y\":270.0021,\"z\":0.0168}},\"992bc4\":{\"lock\":false,\"pos\":{\"x\":-3.7366,\"y\":1.5823,\"z\":-15.0084},\"rot\":{\"x\":359.9197,\"y\":269.9815,\"z\":0.0169}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":8.366,\"y\":1.5615,\"z\":-28.4186},\"rot\":{\"x\":359.9201,\"y\":270.0162,\"z\":0.0168}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "055532", "Name": "Custom_Model_Bag", "Transform": { "posX": 8.825702, "posY": 1.46454489, "posZ": -15.8276014, "rotX": 359.920135, "rotY": 269.999756, "rotZ": 0.0168756079, "scaleX": 1.29821277, "scaleY": 0.2702163, "scaleZ": 1.42157257 }, "Nickname": "Coming Soon", "Description": "Celtic Rising - Scenario ?", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1861680907626442502/4821E039969BC38CA80EB7326827BEBDA9E5748F/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CustomShader": { "SpecularColor": { "r": 1.0, "g": 1.0, "b": 1.0 }, "SpecularIntensity": 0.0, "SpecularSharpness": 2.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"07e402\":{\"lock\":false,\"pos\":{\"x\":-33.8921,\"y\":1.6298,\"z\":3.635},\"rot\":{\"x\":359.9746,\"y\":209.9851,\"z\":0.0776}},\"0ee5d3\":{\"lock\":false,\"pos\":{\"x\":-27.448,\"y\":1.6455,\"z\":-9.4354},\"rot\":{\"x\":359.3625,\"y\":269.9976,\"z\":0.017}},\"1841f8\":{\"lock\":false,\"pos\":{\"x\":-30.2261,\"y\":1.6417,\"z\":15.1879},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":180.0168}},\"1c2a79\":{\"lock\":false,\"pos\":{\"x\":-30.1918,\"y\":1.6236,\"z\":0.0695},\"rot\":{\"x\":359.9832,\"y\":0.0064,\"z\":359.9201}},\"22a169\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"23c3aa\":{\"lock\":false,\"pos\":{\"x\":-26.9169,\"y\":1.6178,\"z\":-4.021},\"rot\":{\"x\":359.9746,\"y\":209.9915,\"z\":0.0776}},\"24b799\":{\"lock\":false,\"pos\":{\"x\":-14.3764,\"y\":1.6585,\"z\":20.5666},\"rot\":{\"x\":359.9201,\"y\":270.0203,\"z\":0.0169}},\"29e592\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6143,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"2d04ff\":{\"lock\":false,\"pos\":{\"x\":-17.1203,\"y\":1.6418,\"z\":3.8601},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"322854\":{\"lock\":false,\"pos\":{\"x\":-11.6954,\"y\":1.5182,\"z\":22.9055},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"5753f4\":{\"lock\":false,\"pos\":{\"x\":-17.1091,\"y\":1.6373,\"z\":-11.4877},\"rot\":{\"x\":359.9201,\"y\":269.9954,\"z\":0.0168}},\"587f46\":{\"lock\":false,\"pos\":{\"x\":-14.5052,\"y\":1.5224,\"z\":24.109},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"58b299\":{\"lock\":false,\"pos\":{\"x\":-26.9727,\"y\":1.6202,\"z\":3.8683},\"rot\":{\"x\":359.9455,\"y\":330.0161,\"z\":359.9392}},\"5c86a7\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6202,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9894,\"z\":0.0799}},\"5d0622\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.627,\"z\":11.46},\"rot\":{\"x\":0.0168,\"y\":180.0089,\"z\":0.0799}},\"6c5342\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0032,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.878,\"y\":1.6275,\"z\":-4.159},\"rot\":{\"x\":0.0545,\"y\":150.015,\"z\":0.0608}},\"8834d6\":{\"lock\":false,\"pos\":{\"x\":-17.121,\"y\":1.6396,\"z\":-3.8294},\"rot\":{\"x\":359.9201,\"y\":269.9868,\"z\":0.0169}},\"8ede76\":{\"lock\":false,\"pos\":{\"x\":-19.4591,\"y\":1.59,\"z\":2.9485},\"rot\":{\"x\":0.08,\"y\":89.9997,\"z\":359.9832}},\"9933d4\":{\"lock\":false,\"pos\":{\"x\":-33.5587,\"y\":1.6305,\"z\":7.501},\"rot\":{\"x\":359.9201,\"y\":270.0114,\"z\":0.0169}},\"adaf95\":{\"lock\":false,\"pos\":{\"x\":-30.2246,\"y\":1.6327,\"z\":-15.267},\"rot\":{\"x\":359.9201,\"y\":270.0273,\"z\":180.0168}},\"c0781b\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6394,\"z\":7.5691},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":180.0168}},\"c881d2\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6463,\"z\":-0.0297},\"rot\":{\"x\":359.9201,\"y\":269.9986,\"z\":180.0168}},\"c8d4e5\":{\"lock\":false,\"pos\":{\"x\":-11.1644,\"y\":1.5167,\"z\":20.5792},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"e41426\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"e6ffd5\":{\"lock\":false,\"pos\":{\"x\":-30.2248,\"y\":1.6349,\"z\":-7.6987},\"rot\":{\"x\":359.9201,\"y\":270.0043,\"z\":180.0165}},\"ef0ee6\":{\"lock\":false,\"pos\":{\"x\":-33.8987,\"y\":1.6253,\"z\":-11.7133},\"rot\":{\"x\":359.9455,\"y\":329.9997,\"z\":359.9392}},\"f246fe\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7107,\"z\":5.7575},\"rot\":{\"x\":359.9197,\"y\":270.0109,\"z\":0.0168}},\"f25875\":{\"lock\":false,\"pos\":{\"x\":-19.4875,\"y\":1.5878,\"z\":-4.5611},\"rot\":{\"x\":0.08,\"y\":89.9998,\"z\":359.9832}},\"f2de53\":{\"lock\":false,\"pos\":{\"x\":-33.5242,\"y\":1.6259,\"z\":-7.749},\"rot\":{\"x\":359.9201,\"y\":269.9915,\"z\":0.0169}},\"f508a2\":{\"lock\":false,\"pos\":{\"x\":-19.4358,\"y\":1.5855,\"z\":-12.1722},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9832}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "fe2ae4", "Name": "ScriptingTrigger", "Transform": { "posX": -3.90844154, "posY": 4.13122, "posZ": -10.4676151, "rotX": 0.0, "rotY": 89.99999, "rotZ": 0.0, "scaleX": 3.471745, "scaleY": 5.1, "scaleZ": 4.49798346 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0, "a": 0.509803951 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": true, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "07e402", "Name": "Custom_Tile", "Transform": { "posX": -33.8921, "posY": 1.62978363, "posZ": 3.635001, "rotX": 359.97464, "rotY": 209.985123, "rotZ": 0.07762122, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "0ee5d3", "Name": "CardCustom", "Transform": { "posX": -27.448, "posY": 1.64546967, "posZ": -9.435401, "rotX": 359.362457, "rotY": 269.99762, "rotZ": 0.0171297863, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Healing Salve", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 453400, "SidewaysCard": false, "CustomDeck": { "4534": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537897821/AEE2F9EC0ED773C8D9996DC10A1431777BECB853/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537933652/9129E85654F8B37080558182BF8A1C6353ACDF51/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1841f8", "Name": "CardCustom", "Transform": { "posX": -30.2261, "posY": 1.6416719, "posZ": 15.1879015, "rotX": 359.9201, "rotY": 269.998749, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Chulainn's Bar", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452900, "SidewaysCard": false, "CustomDeck": { "4529": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537927099/A6D339D0414D300ACC633DCFA7461239E9A8FE30/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992981760078/BDA86F1F8059FC376CFDED9857D36BAEE33A09E1/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1c2a79", "Name": "Custom_Tile", "Transform": { "posX": -30.1918, "posY": 1.62357616, "posZ": 0.06950062, "rotX": 359.9832, "rotY": 0.00638394244, "rotZ": 359.9201, "scaleX": 1.76113939, "scaleY": 1.0, "scaleZ": 1.76113939 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.76113939, "scaleY": 1.0, "scaleZ": 1.76113939 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 1.40891147, "scaleY": 1.0, "scaleZ": 1.40891147 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "22a169", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.6964016, "posY": 1.55831671, "posZ": 14.2788038, "rotX": 359.955139, "rotY": 224.998, "rotZ": 0.0686732456, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.547172844, "g": 0.4882509, "b": 0.597561061 }, "LayoutGroupSortIndex": 0, "Value": 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": "78ef5d", "Name": "CardCustom", "Transform": { "posX": -6.05843163, "posY": 1.63879764, "posZ": -9.551873, "rotX": 359.9201, "rotY": 270.003326, "rotZ": 0.0168348979, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lig na Paiste", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 447300, "SidewaysCard": false, "CustomDeck": { "4473": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537647722/EDC5E6A351B7BD36891A70F1CC50EF2498D80649/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537647722/EDC5E6A351B7BD36891A70F1CC50EF2498D80649/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d14543", "Name": "Bag", "Transform": { "posX": -7.51194429, "posY": 1.35478771, "posZ": -10.9207039, "rotX": 0.0167646334, "rotY": 90.00002, "rotZ": -0.00353701133, "scaleX": 1.3499999, "scaleY": 1.3499999, "scaleZ": 1.3499999 }, "Nickname": "Victory Prizes", "Description": "Congratulations!", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.627, "g": 0.124999888, "b": 0.941 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"1278c5\":{\"lock\":false,\"pos\":{\"x\":9.5466,\"y\":1.2644,\"z\":30.589},\"rot\":{\"x\":0.08,\"y\":89.9996,\"z\":359.9831}},\"19b84f\":{\"lock\":false,\"pos\":{\"x\":9.4948,\"y\":1.2632,\"z\":26.0776},\"rot\":{\"x\":0.0799,\"y\":89.9993,\"z\":359.9831}},\"4836d7\":{\"lock\":false,\"pos\":{\"x\":9.495,\"y\":1.2619,\"z\":21.903},\"rot\":{\"x\":0.08,\"y\":89.9995,\"z\":359.9831}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "1278c5", "Name": "Bag", "Transform": { "posX": 9.546601, "posY": 1.26441884, "posZ": 30.589, "rotX": 0.07995085, "rotY": 89.99994, "rotZ": 359.9831, "scaleX": 1.1500001, "scaleY": 1.1500001, "scaleZ": 1.1500001 }, "Nickname": "Galvanised", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.05882342, "g": 0.111859031, "b": 0.8980392 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":[]}", "XmlUI": "", "ContainedObjects": [ { "GUID": "fd8dd8", "Name": "CardCustom", "Transform": { "posX": 18.7970657, "posY": 1.48085511, "posZ": -4.334425, "rotX": 359.9201, "rotY": 270.0314, "rotZ": 0.0168292653, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452300, "SidewaysCard": false, "CustomDeck": { "4523": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537889955/E7417636241D6D7225DED586B3B16202B1D74F6E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eef9fd", "Name": "CardCustom", "Transform": { "posX": 19.1515026, "posY": 1.48149467, "posZ": -1.2592144, "rotX": 359.9201, "rotY": 270.022766, "rotZ": 0.0168424658, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452200, "SidewaysCard": false, "CustomDeck": { "4522": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537888978/831CC03B4CAAD0AE58B33BF57A22B8303DC62660/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7aa594", "Name": "CardCustom", "Transform": { "posX": 18.8941288, "posY": 1.48119485, "posZ": -1.40134788, "rotX": 359.920135, "rotY": 269.999969, "rotZ": 0.0168726537, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452100, "SidewaysCard": false, "CustomDeck": { "4521": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537887347/1C64E31FF685AB368B8688815A7FE75F0D426882/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2c5c7f", "Name": "CardCustom", "Transform": { "posX": 18.0426769, "posY": 1.48048, "posZ": 1.51879084, "rotX": 359.920135, "rotY": 269.999939, "rotZ": 0.0168716423, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452000, "SidewaysCard": false, "CustomDeck": { "4520": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537886339/3A4D5BAFF7A337519BB96840125D8B8D11E466DF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1b763e", "Name": "CardCustom", "Transform": { "posX": 22.2797813, "posY": 1.47582531, "posZ": -5.37146854, "rotX": 359.920135, "rotY": 270.0, "rotZ": 0.0168742035, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451900, "SidewaysCard": false, "CustomDeck": { "4519": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537885365/D9B6C5980F8656C2CA6831668C266E8B130EF826/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7e9a2e", "Name": "CardCustom", "Transform": { "posX": 21.7631588, "posY": 1.4771558, "posZ": -3.079672, "rotX": 359.920135, "rotY": 270.000031, "rotZ": 0.016873559, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451800, "SidewaysCard": false, "CustomDeck": { "4518": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537884651/0EA06B5D5FD0A3851CEBD5B029DF4BEF89F10630/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "51308f", "Name": "CardCustom", "Transform": { "posX": 22.6412544, "posY": 1.47627914, "posZ": -1.64723074, "rotX": 359.920135, "rotY": 269.999969, "rotZ": 0.0168727469, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451700, "SidewaysCard": false, "CustomDeck": { "4517": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537649961/1A3E4C52FDF14B414768081B07E143693FF5F38A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8361e7", "Name": "CardCustom", "Transform": { "posX": 21.75613, "posY": 1.47763121, "posZ": -0.306372583, "rotX": 359.920135, "rotY": 270.0069, "rotZ": 0.0168623719, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451600, "SidewaysCard": false, "CustomDeck": { "4516": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537880642/FF4DEE5F4051153B992AD7808A738FC694F266EA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537880949/A7EB8975E5C2883236F3F5A616C49271D80DC566/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "19b84f", "Name": "Bag", "Transform": { "posX": 9.494801, "posY": 1.263162, "posZ": 26.0776, "rotX": 0.07995969, "rotY": 89.999794, "rotZ": 359.9831, "scaleX": 1.1500001, "scaleY": 1.1500001, "scaleZ": 1.1500001 }, "Nickname": "Benevolent", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.937254965, "g": 0.121568494, "b": 0.121568494 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":[]}", "XmlUI": "", "ContainedObjects": [ { "GUID": "4e11cd", "Name": "CardCustom", "Transform": { "posX": 25.169075, "posY": 1.473159, "posZ": -1.6400255, "rotX": 359.920135, "rotY": 269.999969, "rotZ": 0.0168731268, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452200, "SidewaysCard": false, "CustomDeck": { "4522": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537898824/A24078B20D0C37948D6844DABCC38C0829EF002D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bc5edc", "Name": "CardCustom", "Transform": { "posX": 23.3215961, "posY": 1.47563815, "posZ": -1.0789696, "rotX": 359.920135, "rotY": 269.999725, "rotZ": 0.0168758444, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452100, "SidewaysCard": false, "CustomDeck": { "4521": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537897821/AEE2F9EC0ED773C8D9996DC10A1431777BECB853/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "94a436", "Name": "CardCustom", "Transform": { "posX": 24.9542961, "posY": 1.93530452, "posZ": 5.06681633, "rotX": 359.920135, "rotY": 269.9999, "rotZ": 0.0168737266, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452000, "SidewaysCard": false, "CustomDeck": { "4520": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537896698/D1CF95600FEC0B30D96463A627BAC1E4089D8DD0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ba0111", "Name": "CardCustom", "Transform": { "posX": 23.265873, "posY": 1.93761194, "posZ": 5.262991, "rotX": 359.920135, "rotY": 270.000458, "rotZ": 0.0168711469, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451900, "SidewaysCard": false, "CustomDeck": { "4519": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537894643/EC94A6F0A2E3AB1C619425B031EC4F21B85E7B50/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537895041/897059DBA2B9474956EDD9442674FF1CA3886E24/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "4836d7", "Name": "Bag", "Transform": { "posX": 9.495012, "posY": 1.26193237, "posZ": 21.9030457, "rotX": 0.07995074, "rotY": 89.99985, "rotZ": 359.9831, "scaleX": 1.1500001, "scaleY": 1.1500001, "scaleZ": 1.1500001 }, "Nickname": "Meshed", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.608013868, "g": 0.608013868, "b": 0.608013868 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":[]}", "XmlUI": "", "ContainedObjects": [ { "GUID": "17a179", "Name": "CardCustom", "Transform": { "posX": 23.8283749, "posY": 1.478613, "posZ": 12.4791384, "rotX": 359.920135, "rotY": 270.0, "rotZ": 0.0168732572, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452700, "SidewaysCard": false, "CustomDeck": { "4527": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537906985/CB89126724953BFD8917BB571C85E31EE980AD39/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ee4869", "Name": "CardCustom", "Transform": { "posX": 22.609766, "posY": 1.48071516, "posZ": 12.5319176, "rotX": 359.920135, "rotY": 269.999939, "rotZ": 0.0168731567, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452600, "SidewaysCard": false, "CustomDeck": { "4526": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537906143/BEE561AA24EC219F5DAB4B1F2CB8F65B60320693/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "63ee49", "Name": "CardCustom", "Transform": { "posX": 17.10376, "posY": 1.48936915, "posZ": 17.9599648, "rotX": 359.920135, "rotY": 270.0, "rotZ": 0.0168734845, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 456800, "SidewaysCard": false, "CustomDeck": { "4568": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537903522/B84C7EC270A47C331CD9D29B687410600A642C31/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827174463/847A024688398A146D2230C1964F3403CDEDD9D8/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "097b21", "Name": "CardCustom", "Transform": { "posX": 16.38295, "posY": 1.4906348, "posZ": 18.31153, "rotX": 359.920135, "rotY": 269.999969, "rotZ": 0.0168717671, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 456700, "SidewaysCard": false, "CustomDeck": { "4567": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827172882/A05F6D3C7EE519273EB2232753BA78A7084D71A5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827173296/AE3CC70BCF2C24ED8E146458B318D55105FD3D96/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "ebc4a2", "Name": "Deck", "Transform": { "posX": 3.009933, "posY": 2.4033637, "posZ": -14.4975042, "rotX": 359.920135, "rotY": 269.998444, "rotZ": 0.01687408, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1Y", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 451100, 451200 ], "CustomDeck": { "4511": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537873425/C4CD27847F6416E64D3643FD526A1BA1AE344B99/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537873810/7B58D111A1099B10E35E4424BEB0E51324685124/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4512": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537874586/0470C5450409A6AC021E536D8400E675191D0A3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537874988/95A7615C861B2A9D3C9CFFA72F5280E6F91BAD19/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "a45618", "Name": "CardCustom", "Transform": { "posX": 8.872414, "posY": 1.49122763, "posZ": 28.7758961, "rotX": 359.9199, "rotY": 269.998444, "rotZ": 0.0170228612, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1y", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451100, "SidewaysCard": false, "CustomDeck": { "4511": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537873425/C4CD27847F6416E64D3643FD526A1BA1AE344B99/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537873810/7B58D111A1099B10E35E4424BEB0E51324685124/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d1d00a", "Name": "CardCustom", "Transform": { "posX": 8.957837, "posY": 1.52090561, "posZ": 28.9573727, "rotX": 359.921661, "rotY": 270.011475, "rotZ": 0.0150346886, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1y", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451200, "SidewaysCard": false, "CustomDeck": { "4512": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537874586/0470C5450409A6AC021E536D8400E675191D0A3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537874988/95A7615C861B2A9D3C9CFFA72F5280E6F91BAD19/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "e9bce1", "Name": "CardCustom", "Transform": { "posX": 4.144774, "posY": 1.80568147, "posZ": 10.60528, "rotX": 359.920135, "rotY": 269.999969, "rotZ": 0.01687133, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Celtic Arcanist", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451100, "SidewaysCard": false, "CustomDeck": { "4511": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537870451/569F7B542AA78EF296F271B4FF7DCC3267DE0E1A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537870761/9129E85654F8B37080558182BF8A1C6353ACDF51/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c48291", "Name": "CardCustom", "Transform": { "posX": 9.484544, "posY": 1.765542, "posZ": 2.092989, "rotX": 359.920135, "rotY": 270.000122, "rotZ": 0.0168726537, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Store of Crystals", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451000, "SidewaysCard": false, "CustomDeck": { "4510": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537866648/0467CEE785D4CEC30670923FC41A3DF1CB8B5E40/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537867201/9129E85654F8B37080558182BF8A1C6353ACDF51/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "25b6b4", "Name": "CardCustom", "Transform": { "posX": 9.609899, "posY": 1.76600933, "posZ": 5.378515, "rotX": 359.920135, "rotY": 270.000153, "rotZ": 0.01687289, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Biotaille san Uisc", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 450900, "SidewaysCard": false, "CustomDeck": { "4509": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537865052/3817D1A95995D230F66B86BEB2F1CDACBC6763E0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537865449/9129E85654F8B37080558182BF8A1C6353ACDF51/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fe8805", "Name": "CardCustom", "Transform": { "posX": 9.094273, "posY": 1.76642823, "posZ": 5.144446, "rotX": 359.920135, "rotY": 269.9998, "rotZ": 0.0168729667, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Resurrection Furnace", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451300, "SidewaysCard": false, "CustomDeck": { "4513": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537862104/ECD624CE0E53CCEF774692345816219D52313FA8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537862485/9129E85654F8B37080558182BF8A1C6353ACDF51/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2e853c", "Name": "Deck", "Transform": { "posX": 9.05664, "posY": 1.79427564, "posZ": 7.69064236, "rotX": 359.920135, "rotY": 270.0075, "rotZ": 0.0168636, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Elite Morrigan Enemies", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 451000, 451200, 450900, 451100 ], "CustomDeck": { "4510": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537854068/99C5B9B63A8A0EF9F446FA5765ED7E21489B283D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1832397008109921588/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4512": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537856963/43DB1F7DF768567654F9CC7A16C708AD8574B96B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537857237/F56969C6AA15C9013931ABCE2E1A8185D814413F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4509": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537852281/176FFDC80AD12F850890417D91689587E8B9D564/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537852793/3C8502C2678EB71E63AABA1F38ABDB13170CF427/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4511": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537855068/B65E500AA7A8C75B440E94A44DCDFE581F580DB1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537855458/D403AF9BA34EFA14BB18F9BC3167C6D72D19B377/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b94c43", "Name": "CardCustom", "Transform": { "posX": 17.8417664, "posY": 1.47553754, "posZ": 17.9874249, "rotX": 359.920135, "rotY": 269.999542, "rotZ": 0.01687376, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451000, "SidewaysCard": false, "CustomDeck": { "4510": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537854068/99C5B9B63A8A0EF9F446FA5765ED7E21489B283D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1832397008109921588/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "14434b", "Name": "CardCustom", "Transform": { "posX": 17.9138546, "posY": 1.55336332, "posZ": 18.1080742, "rotX": 0.08075945, "rotY": 270.018372, "rotZ": 359.982056, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451200, "SidewaysCard": false, "CustomDeck": { "4512": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537856963/43DB1F7DF768567654F9CC7A16C708AD8574B96B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537857237/F56969C6AA15C9013931ABCE2E1A8185D814413F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8be36f", "Name": "CardCustom", "Transform": { "posX": 17.7200813, "posY": 1.53937709, "posZ": 18.1583214, "rotX": 359.9181, "rotY": 270.014038, "rotZ": 0.0134444516, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 450900, "SidewaysCard": false, "CustomDeck": { "4509": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537852281/176FFDC80AD12F850890417D91689587E8B9D564/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537852793/3C8502C2678EB71E63AABA1F38ABDB13170CF427/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c8593c", "Name": "CardCustom", "Transform": { "posX": 18.0547428, "posY": 1.548599, "posZ": 18.2995815, "rotX": 359.920258, "rotY": 270.003845, "rotZ": 0.0159539, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 451100, "SidewaysCard": false, "CustomDeck": { "4511": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537855068/B65E500AA7A8C75B440E94A44DCDFE581F580DB1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537855458/D403AF9BA34EFA14BB18F9BC3167C6D72D19B377/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "780901", "Name": "Deck", "Transform": { "posX": 13.4838552, "posY": 1.51956, "posZ": -3.27680779, "rotX": 359.9201, "rotY": 270.028625, "rotZ": 0.01682696, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Morrigans Will", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 450500, 450400, 450300, 450200, 450100 ], "CustomDeck": { "4505": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537847656/4820ADDD7F2BC89FF24019E1D26E9657055DAE41/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985482475/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4504": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537846675/7895D95CE5609BA40F0D81461FE258C0D75EE34D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985482475/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4503": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537845983/6CFF30A06436E11F5E97FCD120B22AE8884D6A52/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985482475/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4502": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537845267/7CD0D08C91A2907D3C83096EC1711FED034923BC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985481769/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4501": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537844587/8396E3A3B713799B8C078C87B26F98253F3C3598/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985480464/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "65f221", "Name": "CardCustom", "Transform": { "posX": 17.90554, "posY": 1.47680247, "posZ": 22.637825, "rotX": 359.9202, "rotY": 269.995178, "rotZ": 0.016508447, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 450500, "SidewaysCard": false, "CustomDeck": { "4505": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537847656/4820ADDD7F2BC89FF24019E1D26E9657055DAE41/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985482475/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "50632a", "Name": "CardCustom", "Transform": { "posX": 18.266489, "posY": 1.5059334, "posZ": 22.3125286, "rotX": 359.918762, "rotY": 270.004181, "rotZ": 0.018376505, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 450400, "SidewaysCard": false, "CustomDeck": { "4504": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537846675/7895D95CE5609BA40F0D81461FE258C0D75EE34D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985482475/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "808675", "Name": "CardCustom", "Transform": { "posX": 18.336504, "posY": 1.54006183, "posZ": 23.3400574, "rotX": 359.919067, "rotY": 270.0024, "rotZ": 0.0187504478, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 450300, "SidewaysCard": false, "CustomDeck": { "4503": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537845983/6CFF30A06436E11F5E97FCD120B22AE8884D6A52/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985482475/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "51976b", "Name": "CardCustom", "Transform": { "posX": 17.6082649, "posY": 1.55169, "posZ": 26.4517422, "rotX": 359.92038, "rotY": 270.007446, "rotZ": 0.0145872533, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 450200, "SidewaysCard": false, "CustomDeck": { "4502": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537845267/7CD0D08C91A2907D3C83096EC1711FED034923BC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985481769/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4b3ccc", "Name": "CardCustom", "Transform": { "posX": 17.60929, "posY": 1.56107473, "posZ": 25.8017826, "rotX": 359.919769, "rotY": 270.0081, "rotZ": 0.0158443954, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 450100, "SidewaysCard": false, "CustomDeck": { "4501": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537844587/8396E3A3B713799B8C078C87B26F98253F3C3598/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985480464/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "ff82d3", "Name": "Deck", "Transform": { "posX": 12.8623524, "posY": 1.74137414, "posZ": 0.430205882, "rotX": 359.9201, "rotY": 270.022461, "rotZ": 0.0168440044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Losing Hope", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 449600, 449500, 449400, 449300, 449200 ], "CustomDeck": { "4496": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537841263/EA01CEA437B40455D53DDB60626D5FAEB1D8F78D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985476415/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4495": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537840661/33DF3834975EF8BCC31070BE01116598084990CC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985476415/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4494": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537839983/92BA7C713A5138D7BC7A3C0C4EC6416171ADD36A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985475749/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4493": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537838416/9496C22A37A14E5C8D95FA7FE945F52F4AD07939/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985475749/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537837888/90939E1D4A0E3F22ED7D7C2D68F7452D2C0AB65B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985474961/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b8b105", "Name": "CardCustom", "Transform": { "posX": 17.1677647, "posY": 1.47825646, "posZ": 24.029911, "rotX": 359.920135, "rotY": 269.979248, "rotZ": 0.0169016626, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 449600, "SidewaysCard": false, "CustomDeck": { "4496": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537841263/EA01CEA437B40455D53DDB60626D5FAEB1D8F78D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985476415/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "297b4e", "Name": "CardCustom", "Transform": { "posX": 17.2506523, "posY": 1.55600584, "posZ": 23.8687, "rotX": 0.07988486, "rotY": 270.02417, "rotZ": 359.982727, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 449500, "SidewaysCard": false, "CustomDeck": { "4495": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537840661/33DF3834975EF8BCC31070BE01116598084990CC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985476415/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "20d494", "Name": "CardCustom", "Transform": { "posX": 17.4829369, "posY": 1.54133618, "posZ": 23.4016762, "rotX": 359.918427, "rotY": 269.994049, "rotZ": 0.01141894, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 449400, "SidewaysCard": false, "CustomDeck": { "4494": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537839983/92BA7C713A5138D7BC7A3C0C4EC6416171ADD36A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985475749/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6b9c85", "Name": "CardCustom", "Transform": { "posX": 17.4595127, "posY": 1.55103374, "posZ": 23.6290627, "rotX": 359.9188, "rotY": 270.009033, "rotZ": 0.0116532762, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 449300, "SidewaysCard": false, "CustomDeck": { "4493": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537838416/9496C22A37A14E5C8D95FA7FE945F52F4AD07939/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985475749/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9d62a4", "Name": "CardCustom", "Transform": { "posX": 12.4507828, "posY": 1.56999171, "posZ": 31.702528, "rotX": 359.9226, "rotY": 270.01474, "rotZ": 0.0119767394, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 449200, "SidewaysCard": false, "CustomDeck": { "4492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537837888/90939E1D4A0E3F22ED7D7C2D68F7452D2C0AB65B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985474961/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "28cb13", "Name": "Deck", "Transform": { "posX": 13.4160223, "posY": 1.52209961, "posZ": 5.04978037, "rotX": 359.9201, "rotY": 270.0238, "rotZ": 0.0168426819, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abject Mania", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 448800, 448700, 448600, 448500, 448400 ], "CustomDeck": { "4488": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537835052/30A67AD9C4AB738FD3A5095205AEABF8BB7FE078/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985467213/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4487": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537834538/CE93F1865C7C60B1EA25390DB691566E3854512E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985467213/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4486": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537833905/134636F5F178198BEDE652932DF9ECB002E21D47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985467213/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4485": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537833285/474029567A8E1354F886E139988313F6F801BFC6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985466578/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4484": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537832261/1686078048DA49BA4CBA12049F558F9330FAB529/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985465937/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "37f122", "Name": "CardCustom", "Transform": { "posX": 17.90081, "posY": 1.47844446, "posZ": 28.09413, "rotX": 359.918884, "rotY": 270.043243, "rotZ": 0.0171748847, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 448800, "SidewaysCard": false, "CustomDeck": { "4488": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537835052/30A67AD9C4AB738FD3A5095205AEABF8BB7FE078/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985467213/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7bc495", "Name": "CardCustom", "Transform": { "posX": 18.25024, "posY": 1.50767839, "posZ": 28.16982, "rotX": 359.915619, "rotY": 270.00943, "rotZ": 0.0138318008, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 448700, "SidewaysCard": false, "CustomDeck": { "4487": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537834538/CE93F1865C7C60B1EA25390DB691566E3854512E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985467213/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c50c3b", "Name": "CardCustom", "Transform": { "posX": 17.79548, "posY": 1.54218662, "posZ": 28.1387253, "rotX": 359.914948, "rotY": 270.050751, "rotZ": 0.0154151116, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 448600, "SidewaysCard": false, "CustomDeck": { "4486": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537833905/134636F5F178198BEDE652932DF9ECB002E21D47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985467213/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d64f5f", "Name": "CardCustom", "Transform": { "posX": 18.03316, "posY": 1.55157661, "posZ": 28.39352, "rotX": 359.919922, "rotY": 269.9972, "rotZ": 0.0184175111, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 448500, "SidewaysCard": false, "CustomDeck": { "4485": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537833285/474029567A8E1354F886E139988313F6F801BFC6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985466578/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8de5ae", "Name": "CardCustom", "Transform": { "posX": 18.1470337, "posY": 1.56098509, "posZ": 28.0363312, "rotX": 359.91626, "rotY": 270.020142, "rotZ": 0.0123955766, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 448400, "SidewaysCard": false, "CustomDeck": { "4484": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537832261/1686078048DA49BA4CBA12049F558F9330FAB529/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985465937/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "7a4075", "Name": "Deck", "Transform": { "posX": 4.16982555, "posY": 2.412654, "posZ": -11.7673664, "rotX": 359.9201, "rotY": 269.9729, "rotZ": 0.01688038, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Drunmharu and Crows", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 456800, 456700, 456600, 448300 ], "CustomDeck": { "4568": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751696567/201D491F7AEE5E6C47F8E8D2AC82A749EC3514A2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985461943/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4567": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751696007/32548B30F2E76B337091E807979FC520D50DE294/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985461943/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4566": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751695097/ED8AE02B827A1732A6CB708F596B4095C8883808/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985461943/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4483": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537701167/CFDBCDD5EEE9C92FCDA29002587F8CDDC4614D02/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985461105/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d05a8c", "Name": "CardCustom", "Transform": { "posX": -12.1321993, "posY": 1.61234224, "posZ": 1.28199613, "rotX": 359.920227, "rotY": 269.965881, "rotZ": 0.016890822, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 456800, "SidewaysCard": false, "CustomDeck": { "4568": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751696567/201D491F7AEE5E6C47F8E8D2AC82A749EC3514A2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985461943/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "93a42e", "Name": "CardCustom", "Transform": { "posX": -12.2765245, "posY": 1.64228439, "posZ": 1.55637765, "rotX": 359.919434, "rotY": 269.99884, "rotZ": 0.01901586, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 456700, "SidewaysCard": false, "CustomDeck": { "4567": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751696007/32548B30F2E76B337091E807979FC520D50DE294/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985461943/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dcbe82", "Name": "CardCustom", "Transform": { "posX": -12.39356, "posY": 1.67636919, "posZ": 0.9029241, "rotX": 359.9164, "rotY": 270.0063, "rotZ": 0.0151207047, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 456600, "SidewaysCard": false, "CustomDeck": { "4566": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751695097/ED8AE02B827A1732A6CB708F596B4095C8883808/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985461943/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b9f018", "Name": "CardCustom", "Transform": { "posX": -12.01194, "posY": 1.68549263, "posZ": 1.472105, "rotX": 359.9188, "rotY": 269.9999, "rotZ": 0.0155529911, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 448300, "SidewaysCard": false, "CustomDeck": { "4483": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537701167/CFDBCDD5EEE9C92FCDA29002587F8CDDC4614D02/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992985461105/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "33f396", "Name": "Deck", "Transform": { "posX": 21.90118, "posY": 1.50355983, "posZ": 14.2853441, "rotX": 359.920135, "rotY": 270.006958, "rotZ": 180.016861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locations", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 447900, 448000, 448100 ], "CustomDeck": { "4479": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537654781/78CDAB2DB16A2549EE5F0141B03CEE8E23D94256/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1785107311172448435/E51CF879E2A24D7E6C0F930291DF33BE0C4C9345/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4480": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537658702/BCBD012328EEA4A8CC484FD959058A82A89A693A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1832397300871624534/0EBA4EFB89688097BDE02A7EDAAD4F388ECB4189/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4481": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537659648/4834BBD32E0CEA6C14C2CDC8BB0D44416F12733F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861684065932101792/A7AE22229E77AC1E769D96609955D0AF799ED914/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9ace56", "Name": "CardCustom", "Transform": { "posX": 18.6544933, "posY": 1.53998268, "posZ": 24.56145, "rotX": 359.920135, "rotY": 270.0014, "rotZ": 180.016586, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ballysiorai Church", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 447900, "SidewaysCard": false, "CustomDeck": { "4479": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537654781/78CDAB2DB16A2549EE5F0141B03CEE8E23D94256/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1785107311172448435/E51CF879E2A24D7E6C0F930291DF33BE0C4C9345/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c48e4f", "Name": "CardCustom", "Transform": { "posX": 18.2875271, "posY": 1.50669479, "posZ": 25.13492, "rotX": 359.920441, "rotY": 269.949615, "rotZ": 180.019913, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ballysiorai Well", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 448000, "SidewaysCard": false, "CustomDeck": { "4480": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537658702/BCBD012328EEA4A8CC484FD959058A82A89A693A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1832397300871624534/0EBA4EFB89688097BDE02A7EDAAD4F388ECB4189/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9cdde5", "Name": "CardCustom", "Transform": { "posX": 18.44699, "posY": 1.47671938, "posZ": 24.848917, "rotX": 359.919739, "rotY": 270.00528, "rotZ": 180.017578, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Life Library", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 448100, "SidewaysCard": false, "CustomDeck": { "4481": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537659648/4834BBD32E0CEA6C14C2CDC8BB0D44416F12733F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861684065932101792/A7AE22229E77AC1E769D96609955D0AF799ED914/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "1dab66", "Name": "Deck", "Transform": { "posX": 22.2928715, "posY": 1.50435126, "posZ": 16.38462, "rotX": 359.9201, "rotY": 270.013672, "rotZ": 0.0168559663, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frenzied Crowd", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 447700, 447600, 447500 ], "CustomDeck": { "4477": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537653137/DD63B2B821765A3B1FC21788CB82AE8AE6BD13AD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983517447/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4476": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537652448/99A0CC688900F322D1BF84C39E8D059577769A4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983517447/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4475": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537651786/A7A6268601434177E4ACBE46B62B242D46695217/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983517447/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b268e0", "Name": "CardCustom", "Transform": { "posX": 17.96586, "posY": 1.47849262, "posZ": 28.6227322, "rotX": 359.920044, "rotY": 270.151855, "rotZ": 0.0161183067, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 447700, "SidewaysCard": false, "CustomDeck": { "4477": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537653137/DD63B2B821765A3B1FC21788CB82AE8AE6BD13AD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983517447/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ca3617", "Name": "CardCustom", "Transform": { "posX": 17.8553257, "posY": 1.50829339, "posZ": 28.5749054, "rotX": 359.921234, "rotY": 270.015869, "rotZ": 0.0157369059, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 447600, "SidewaysCard": false, "CustomDeck": { "4476": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537652448/99A0CC688900F322D1BF84C39E8D059577769A4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983517447/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d075ee", "Name": "CardCustom", "Transform": { "posX": 17.3614483, "posY": 1.54279888, "posZ": 28.4996185, "rotX": 359.9324, "rotY": 270.038, "rotZ": 0.007601918, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 447500, "SidewaysCard": false, "CustomDeck": { "4475": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537651786/A7A6268601434177E4ACBE46B62B242D46695217/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983517447/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "534ec6", "Name": "CardCustom", "Transform": { "posX": 23.8965721, "posY": 1.47283089, "posZ": -7.377917, "rotX": 359.920319, "rotY": 269.999329, "rotZ": 0.0177265815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Setantas Hurl", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 447400, "SidewaysCard": false, "CustomDeck": { "4474": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537649961/1A3E4C52FDF14B414768081B07E143693FF5F38A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1832397107130593547/94AEF1178557E194D20F9C85918FCF89B04FCC7A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "23c3aa", "Name": "Custom_Tile", "Transform": { "posX": -26.9169, "posY": 1.61780715, "posZ": -4.021, "rotX": 359.97464, "rotY": 209.991486, "rotZ": 0.07761676, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "24b799", "Name": "Deck", "Transform": { "posX": -14.3764277, "posY": 1.6585176, "posZ": 20.5666084, "rotX": 359.9201, "rotY": 270.020264, "rotZ": 0.0168561675, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Revised Core", "Description": "Add 5 more lvl 0 cards (no mystics)", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 226302, 368508, 368800, 368402, 368413, 315254, 368846, 368810, 315258, 315258, 226337, 226337, 430657, 368848, 368424, 226324, 315239, 226348, 368521, 368522, 226357, 226357, 430637, 226330, 368628, 452700, 452800 ], "CustomDeck": { "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3684": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3152": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4306": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3686": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4527": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537920394/DA86EB15D46F69C00F42FDAF8927BFEE0D6C277C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4528": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537896698/D1CF95600FEC0B30D96463A627BAC1E4089D8DD0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "780adb", "Name": "Card", "Transform": { "posX": 55.2089844, "posY": 1.29755187, "posZ": 53.4583855, "rotX": 0.0208418984, "rotY": 270.003235, "rotZ": 0.0167105068, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vicious Blow", "Description": "", "GMNotes": "{\n \"id\": \"01025\",\n \"alternate_ids\": [ \"60119\" ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 226302, "SidewaysCard": false, "CustomDeck": { "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fc7a3d", "Name": "Card", "Transform": { "posX": 55.6092453, "posY": 1.32732522, "posZ": 53.76359, "rotX": 0.0210687947, "rotY": 269.999664, "rotZ": 0.0166284535, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Unexpected Courage", "Description": "", "GMNotes": "{\n \"id\": \"01093\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368508, "SidewaysCard": false, "CustomDeck": { "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4d7c68", "Name": "Card", "Transform": { "posX": 58.6833649, "posY": 1.36537206, "posZ": 50.89811, "rotX": 0.0208086576, "rotY": 270.0, "rotZ": 0.0167710539, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Survival Instinct", "Description": "", "GMNotes": "{\n \"id\": \"01081\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368800, "SidewaysCard": false, "CustomDeck": { "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "131cb2", "Name": "Card", "Transform": { "posX": 58.5079422, "posY": 1.37493145, "posZ": 50.5534058, "rotX": 0.020808693, "rotY": 270.000061, "rotZ": 0.0167711116, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Deduction", "Description": "", "GMNotes": "{\n \"id\": \"01039\",\n \"alternate_ids\": [ \"60219\" ],\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368402, "SidewaysCard": false, "CustomDeck": { "3684": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e9cc58", "Name": "Card", "Transform": { "posX": 49.5628624, "posY": 1.29544806, "posZ": 53.3527946, "rotX": 0.0210692286, "rotY": 269.999939, "rotZ": 0.0151787447, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Working a Hunch", "Description": "", "GMNotes": "{\n \"id\": \"01037\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368413, "SidewaysCard": false, "CustomDeck": { "3684": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "726a23", "Name": "Card", "Transform": { "posX": 53.21275, "posY": 1.29612362, "posZ": 51.05173, "rotX": 0.0208112821, "rotY": 269.9906, "rotZ": 0.0167677719, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sure Gamble (3)", "Description": "", "GMNotes": "{\n \"id\": \"01056\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Insight.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315254, "SidewaysCard": false, "CustomDeck": { "3152": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "255210", "Name": "Card", "Transform": { "posX": 53.1707458, "posY": 1.32951427, "posZ": 50.8262253, "rotX": 0.0207964331, "rotY": 270.041534, "rotZ": 0.0167862773, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lucky! (2)", "Description": "", "GMNotes": "{\n \"id\": \"01084\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368846, "SidewaysCard": false, "CustomDeck": { "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3e0251", "Name": "Card", "Transform": { "posX": 53.4955978, "posY": 1.36353219, "posZ": 51.09329, "rotX": 0.0208086446, "rotY": 270.0, "rotZ": 0.0167710241, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lucky!", "Description": "", "GMNotes": "{\n \"id\": \"01080\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368810, "SidewaysCard": false, "CustomDeck": { "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a0134b", "Name": "Card", "Transform": { "posX": 49.108326, "posY": 1.29347837, "posZ": 47.1211357, "rotX": 0.020811284, "rotY": 269.979523, "rotZ": 0.0169258881, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hot Streak (4)", "Description": "", "GMNotes": "{\n \"id\": \"01057\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315258, "SidewaysCard": false, "CustomDeck": { "3152": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "276dc1", "Name": "Card", "Transform": { "posX": 49.3650856, "posY": 1.33615923, "posZ": 47.203373, "rotX": 0.0209059026, "rotY": 269.9953, "rotZ": 359.276855, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hot Streak (4)", "Description": "", "GMNotes": "{\n \"id\": \"01057\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315258, "SidewaysCard": false, "CustomDeck": { "3152": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0ace6c", "Name": "Card", "Transform": { "posX": 53.2126236, "posY": 1.29544842, "posZ": 48.745285, "rotX": 0.0208044872, "rotY": 270.013824, "rotZ": 0.0167762171, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Extra Ammunition (1)", "Description": "", "GMNotes": "{\n \"id\": \"01026\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Supply.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 226337, "SidewaysCard": false, "CustomDeck": { "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e575ef", "Name": "Card", "Transform": { "posX": 53.3633423, "posY": 1.32884979, "posZ": 48.3542442, "rotX": 0.0208045747, "rotY": 270.013855, "rotZ": 0.0167758074, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Extra Ammunition (1)", "Description": "", "GMNotes": "{\n \"id\": \"01026\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Supply.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 226337, "SidewaysCard": false, "CustomDeck": { "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d35551", "Name": "Card", "Transform": { "posX": 53.2282448, "posY": 1.2967993, "posZ": 53.34123, "rotX": 0.0208137352, "rotY": 269.982422, "rotZ": 0.0167647786, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cryptic Research (4)", "Description": "", "GMNotes": "{\n \"id\": \"01043\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 430657, "SidewaysCard": false, "CustomDeck": { "4306": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "86afb8", "Name": "Card", "Transform": { "posX": 53.4876, "posY": 1.330346, "posZ": 53.69164, "rotX": 0.0208086651, "rotY": 270.000275, "rotZ": 0.0167719647, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Close Call (2)", "Description": "", "GMNotes": "{\n \"id\": \"01083\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368848, "SidewaysCard": false, "CustomDeck": { "3688": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3faf85", "Name": "Card", "Transform": { "posX": 58.3838768, "posY": 1.298657, "posZ": 53.2903748, "rotX": 0.0208085142, "rotY": 270.000122, "rotZ": 0.01677117, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hyperawareness", "Description": "", "GMNotes": "{\n \"id\": \"01034\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368424, "SidewaysCard": false, "CustomDeck": { "3684": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a9d802", "Name": "Card", "Transform": { "posX": 58.38379, "posY": 1.29933012, "posZ": 55.59031, "rotX": 0.0208083689, "rotY": 270.0008, "rotZ": 0.0167714115, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "First Aid", "Description": "", "GMNotes": "{\n \"id\": \"01019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 226324, "SidewaysCard": false, "CustomDeck": { "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f21e47", "Name": "Card", "Transform": { "posX": 49.5628242, "posY": 1.29614484, "posZ": 55.6528, "rotX": 0.0208043531, "rotY": 270.0141, "rotZ": 0.0167762246, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cat Burglar (1)", "Description": "", "GMNotes": "{\n \"id\": \"01055\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315239, "SidewaysCard": false, "CustomDeck": { "3152": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2938e6", "Name": "Card", "Transform": { "posX": 49.5628242, "posY": 1.29749143, "posZ": 60.2528076, "rotX": 0.0208115242, "rotY": 269.98938, "rotZ": 0.01676733, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Beat Cop (2)", "Description": "", "GMNotes": "{\n \"id\": \"01028\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 226348, "SidewaysCard": false, "CustomDeck": { "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "262151", "Name": "Card", "Transform": { "posX": 49.5628242, "posY": 1.29883778, "posZ": 64.85267, "rotX": 0.0208046343, "rotY": 270.013519, "rotZ": 0.0167761389, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bulletproof Vest (3)", "Description": "", "GMNotes": "{\n \"id\": \"01094\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Armor.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368521, "SidewaysCard": false, "CustomDeck": { "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bcffdb", "Name": "Card", "Transform": { "posX": 49.4606857, "posY": 1.332269, "posZ": 64.9499054, "rotX": 0.0208116025, "rotY": 269.990631, "rotZ": 0.01676833, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Elder Sign Amulet (3)", "Description": "", "GMNotes": "{\n \"id\": \"01095\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368522, "SidewaysCard": false, "CustomDeck": { "3685": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4afe65", "Name": "Card", "Transform": { "posX": 58.3838425, "posY": 1.30202317, "posZ": 64.79024, "rotX": 0.020809453, "rotY": 269.99704, "rotZ": 0.0167700481, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Shotgun (4)", "Description": "", "GMNotes": "{\n \"id\": \"01029\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 226357, "SidewaysCard": false, "CustomDeck": { "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c47d64", "Name": "Card", "Transform": { "posX": 58.6172142, "posY": 1.33549166, "posZ": 64.69212, "rotX": 0.0209559463, "rotY": 269.989716, "rotZ": 0.01666172, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Shotgun (4)", "Description": "", "GMNotes": "{\n \"id\": \"01029\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 226357, "SidewaysCard": false, "CustomDeck": { "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "107d2c", "Name": "Card", "Transform": { "posX": 53.22854, "posY": 1.29881918, "posZ": 60.2411957, "rotX": 0.020804761, "rotY": 270.012939, "rotZ": 0.016775934, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Magnifying Glass (1)", "Description": "", "GMNotes": "{\n \"id\": \"01040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 430637, "SidewaysCard": false, "CustomDeck": { "4306": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f9fd5e", "Name": "Card", "Transform": { "posX": 53.2285652, "posY": 1.300839, "posZ": 67.1411057, "rotX": 0.0208086949, "rotY": 269.999756, "rotZ": 0.01677082, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": ".45 Automatic", "Description": "", "GMNotes": "{\n \"id\": \"01016\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 226330, "SidewaysCard": false, "CustomDeck": { "2263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dd5e9c", "Name": "Card", "Transform": { "posX": 53.2285652, "posY": 1.34278166, "posZ": 67.1411057, "rotX": 0.02086358, "rotY": 269.999969, "rotZ": 0.0167287365, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": ".41 Derringer", "Description": "", "GMNotes": "{\n \"id\": \"01047\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 368628, "SidewaysCard": false, "CustomDeck": { "3686": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4922d6", "Name": "CardCustom", "Transform": { "posX": -14.4913292, "posY": 1.80651283, "posZ": 20.79799, "rotX": 359.915558, "rotY": 270.041565, "rotZ": 0.00417526066, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452700, "SidewaysCard": false, "CustomDeck": { "4527": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537920394/DA86EB15D46F69C00F42FDAF8927BFEE0D6C277C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "57e31f", "Name": "CardCustom", "Transform": { "posX": -14.2928162, "posY": 1.81583738, "posZ": 20.33271, "rotX": 359.907959, "rotY": 269.967072, "rotZ": 0.003157369, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452800, "SidewaysCard": false, "CustomDeck": { "4528": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537896698/D1CF95600FEC0B30D96463A627BAC1E4089D8DD0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "29e592", "Name": "Deck", "Transform": { "posX": -2.68852687, "posY": 1.61430252, "posZ": -5.048496, "rotX": 359.919739, "rotY": 270.0, "rotZ": 0.0168371126, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 456400, 456300 ], "CustomDeck": { "4564": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538017192/A49433D1100435F66C781D219395FC565AEE8FB5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538017436/C9F3CB590C6D91E89816161214A75A42BA3FD630/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4563": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538016415/9ECEF408AD7DBEB3EC6711FD72BCB7D48515E8BE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538016666/BD7E779C5E98952ABCC1EF191BF6718D20F65E40/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "02fb32", "Name": "CardCustom", "Transform": { "posX": -2.68855166, "posY": 1.59734881, "posZ": -5.04853, "rotX": 359.919739, "rotY": 270.0, "rotZ": 0.0168364886, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 456400, "SidewaysCard": false, "CustomDeck": { "4564": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538017192/A49433D1100435F66C781D219395FC565AEE8FB5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538017436/C9F3CB590C6D91E89816161214A75A42BA3FD630/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fd222e", "Name": "CardCustom", "Transform": { "posX": -2.63695717, "posY": 1.63264716, "posZ": -5.282097, "rotX": 359.9201, "rotY": 270.017273, "rotZ": 0.0168148559, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 456300, "SidewaysCard": false, "CustomDeck": { "4563": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538016415/9ECEF408AD7DBEB3EC6711FD72BCB7D48515E8BE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538016666/BD7E779C5E98952ABCC1EF191BF6718D20F65E40/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "2d04ff", "Name": "Deck", "Transform": { "posX": -17.120327, "posY": 1.64183557, "posZ": 3.860105, "rotX": 359.9201, "rotY": 269.9999, "rotZ": 0.0168397836, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 455100, 455000, 454900 ], "CustomDeck": { "4551": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537997879/6D10B19378F4D9769F204881F6297C406F99D2FC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537998123/DFCA87DB67B32878A1D50D9EB3DEEDC09CDA5E38/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4550": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537997097/972CC796591DAB99761E95188C750C84D7112E06/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857178768215377265/B3658720409C8FB992A8074F7199BF2030CF14DA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4549": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537996270/95C3798BEC137ECA9BC29D91AE9EB7FA587A1F30/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861684065932097422/C54B25943EE0670B13E6C78B6A0185A895AEBED3/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "694860", "Name": "CardCustom", "Transform": { "posX": -17.1202774, "posY": 1.6200676, "posZ": 3.86009526, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 0.0168389659, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 455100, "SidewaysCard": false, "CustomDeck": { "4551": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537997879/6D10B19378F4D9769F204881F6297C406F99D2FC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537998123/DFCA87DB67B32878A1D50D9EB3DEEDC09CDA5E38/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ad1acf", "Name": "CardCustom", "Transform": { "posX": -16.96118, "posY": 1.655224, "posZ": 3.81795263, "rotX": 359.9201, "rotY": 269.998932, "rotZ": 0.0168405678, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 455000, "SidewaysCard": false, "CustomDeck": { "4550": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537997097/972CC796591DAB99761E95188C750C84D7112E06/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857178768215377265/B3658720409C8FB992A8074F7199BF2030CF14DA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "37c20d", "Name": "CardCustom", "Transform": { "posX": -16.7780247, "posY": 1.68910754, "posZ": 3.91047287, "rotX": 359.9201, "rotY": 269.999023, "rotZ": 0.0168404672, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 454900, "SidewaysCard": false, "CustomDeck": { "4549": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537996270/95C3798BEC137ECA9BC29D91AE9EB7FA587A1F30/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861684065932097422/C54B25943EE0670B13E6C78B6A0185A895AEBED3/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "322854", "Name": "CardCustom", "Transform": { "posX": -11.6954, "posY": 1.51816356, "posZ": 22.9055023, "rotX": 359.9201, "rotY": 270.009644, "rotZ": 0.0168612916, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "Alannah Stephens", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 443500, "SidewaysCard": false, "CustomDeck": { "4435": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861680464819684799/BFAA5757584E4BDAF39B31EB3FA9D3BFD8247FCF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861680464819685133/EEDA87381CE9DF4A265143DF448AA37676EC216C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5753f4", "Name": "Deck", "Transform": { "posX": -17.109127, "posY": 1.63730931, "posZ": -11.4876957, "rotX": 359.9201, "rotY": 269.9954, "rotZ": 0.0168461129, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 455700, 455600, 455500 ], "CustomDeck": { "4557": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538010586/2BA57671CFB3E8D5565349CDC4F40EB3FA4A42E9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538010855/7041829AF204C4A7B91E3EA370113B4A3A750C2D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4556": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538004826/27CD662A8982C30A1D0FBB38D5D4742B6323A973/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857178768217655514/5D5CF03BAEFDD3D6AD572F53436D44A83F7D042C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4555": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538003584/5D661F0B059B9BE43D5C00CB29DB69E768F5BCDC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857178768215375364/9BA8BC17E1988F9A11E15DF20312A4F0759F6CF9/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "12cac8", "Name": "CardCustom", "Transform": { "posX": -17.1091118, "posY": 1.61554146, "posZ": -11.4877052, "rotX": 359.9201, "rotY": 269.995422, "rotZ": 0.0168453585, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 455700, "SidewaysCard": false, "CustomDeck": { "4557": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538010586/2BA57671CFB3E8D5565349CDC4F40EB3FA4A42E9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538010855/7041829AF204C4A7B91E3EA370113B4A3A750C2D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a76066", "Name": "CardCustom", "Transform": { "posX": -17.052269, "posY": 1.70211649, "posZ": -11.199893, "rotX": 0.07984213, "rotY": 270.000061, "rotZ": 359.9826, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 455600, "SidewaysCard": false, "CustomDeck": { "4556": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538004826/27CD662A8982C30A1D0FBB38D5D4742B6323A973/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857178768217655514/5D5CF03BAEFDD3D6AD572F53436D44A83F7D042C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a9b9c8", "Name": "CardCustom", "Transform": { "posX": -16.7636662, "posY": 1.68444812, "posZ": -11.7016325, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.0168389287, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 455500, "SidewaysCard": false, "CustomDeck": { "4555": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538003584/5D661F0B059B9BE43D5C00CB29DB69E768F5BCDC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857178768215375364/9BA8BC17E1988F9A11E15DF20312A4F0759F6CF9/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "587f46", "Name": "CardCustom", "Transform": { "posX": -14.5052023, "posY": 1.52243519, "posZ": 24.1090012, "rotX": 359.920135, "rotY": 270.0, "rotZ": 0.01687182, "scaleX": 0.975, "scaleY": 1.0, "scaleZ": 0.975 }, "Nickname": "Alannah Stephens", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 452400, "SidewaysCard": false, "CustomDeck": { "4524": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537910534/897674088E3FC2C184EF68C20DC713E0AE1F7825/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861680464819686243/525734AC5C2CB6D22C836269C015FB8B0A3FC95D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "58b299", "Name": "Custom_Tile", "Transform": { "posX": -26.9727, "posY": 1.62020373, "posZ": 3.8683, "rotX": 359.9455, "rotY": 330.016083, "rotZ": 359.939178, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "5c86a7", "Name": "Custom_Tile", "Transform": { "posX": -30.224, "posY": 1.62021768, "posZ": -11.5100012, "rotX": 0.0168539751, "rotY": 179.989426, "rotZ": 0.0799359, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "5d0622", "Name": "Custom_Tile", "Transform": { "posX": -30.224, "posY": 1.62696838, "posZ": 11.4600019, "rotX": 0.016826937, "rotY": 180.00885, "rotZ": 0.07995659, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "6c5342", "Name": "CardCustom", "Transform": { "posX": -3.95590019, "posY": 1.59753931, "posZ": -10.4412012, "rotX": 359.919739, "rotY": 270.003174, "rotZ": 0.0168327987, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 455800, "SidewaysCard": false, "CustomDeck": { "4558": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538011923/0E130D90F38D32179ABC3987E14E5422D577574A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538012123/8715EFEB71774DA89A5E59E8E751BDDC39066780/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7234af", "Name": "Custom_Tile", "Transform": { "posX": -33.878, "posY": 1.62747324, "posZ": -4.1590004, "rotX": 0.05452029, "rotY": 150.014969, "rotZ": 0.06081447, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "8834d6", "Name": "Deck", "Transform": { "posX": -17.121006, "posY": 1.63957655, "posZ": -3.829399, "rotX": 359.9201, "rotY": 269.986755, "rotZ": 0.01685776, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 455400, 455300, 455200 ], "CustomDeck": { "4554": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538002018/CE3AECC6AC400B6968216F8EA48AD4720BD569A1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538002300/30075E90BD16AEBB13AE9FD01D5175AC937D1666/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4553": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538000711/FCA43AE9A2FB4E3CC90C14A14DDA3E5B076107B5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861681104201778789/C24257F0BDC663CABFCD76161317208AF2DE4A48/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4552": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537999419/0C9A8BAFD614D1D2689B345E813AA7A87D24BB8A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537999787/85CDFD3DB8D17A46CA8A94A8CC88813AA28A3309/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "268031", "Name": "CardCustom", "Transform": { "posX": -17.1209927, "posY": 1.61780167, "posZ": -3.82940245, "rotX": 359.920166, "rotY": 269.986755, "rotZ": 0.0166172627, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 455400, "SidewaysCard": false, "CustomDeck": { "4554": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538002018/CE3AECC6AC400B6968216F8EA48AD4720BD569A1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538002300/30075E90BD16AEBB13AE9FD01D5175AC937D1666/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1b5b5f", "Name": "CardCustom", "Transform": { "posX": -17.1199989, "posY": 1.65549314, "posZ": -3.83000183, "rotX": 359.938263, "rotY": 269.999939, "rotZ": 0.0209668986, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 455300, "SidewaysCard": false, "CustomDeck": { "4553": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538000711/FCA43AE9A2FB4E3CC90C14A14DDA3E5B076107B5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861681104201778789/C24257F0BDC663CABFCD76161317208AF2DE4A48/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d66e2e", "Name": "CardCustom", "Transform": { "posX": -17.2546272, "posY": 1.69128168, "posZ": -3.73437667, "rotX": 359.9201, "rotY": 269.997284, "rotZ": 359.943756, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 455200, "SidewaysCard": false, "CustomDeck": { "4552": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537999419/0C9A8BAFD614D1D2689B345E813AA7A87D24BB8A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537999787/85CDFD3DB8D17A46CA8A94A8CC88813AA28A3309/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "8ede76", "Name": "Counter", "Transform": { "posX": -19.4591, "posY": 1.58995593, "posZ": 2.94849968, "rotX": 0.07997255, "rotY": 89.99975, "rotZ": 359.983154, "scaleX": 0.650000334, "scaleY": 0.650000334, "scaleZ": 0.650000334 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.541811943, "g": 0.008495264, "b": 0.008495264 }, "LayoutGroupSortIndex": 0, "Value": 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, "Counter": { "value": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9933d4", "Name": "Custom_Tile", "Transform": { "posX": -33.5587, "posY": 1.630455, "posZ": 7.5010004, "rotX": 359.9201, "rotY": 270.0114, "rotZ": 0.0168515425, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "adaf95", "Name": "CardCustom", "Transform": { "posX": -30.2246, "posY": 1.6327194, "posZ": -15.2669992, "rotX": 359.9201, "rotY": 270.0273, "rotZ": 180.0168, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ballysiorai Graveyard", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 453300, "SidewaysCard": false, "CustomDeck": { "4533": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537931551/FEC00199E34245A808C6AA568DC8703010431959/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870678868957568815/85C52DF3C212CA00197E2FC14617B10091100009/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0781b", "Name": "CardCustom", "Transform": { "posX": -30.2243, "posY": 1.63943028, "posZ": 7.5691, "rotX": 359.9201, "rotY": 269.9991, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ballysiorai Bridge", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 453000, "SidewaysCard": false, "CustomDeck": { "4530": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537928416/3938E4CA4816C0998EF18FD7C8E0F40E995486F6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992981745063/6E70BACC719E8C7145184C7B7E52496E3AF5066E/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c881d2", "Name": "CardCustom", "Transform": { "posX": -36.7733, "posY": 1.64632916, "posZ": -0.02969974, "rotX": 359.9201, "rotY": 269.9986, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Old Market", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 453100, "SidewaysCard": false, "CustomDeck": { "4531": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537929255/EA7FEA131181E3F0101C3A7E3E814CCB8BE2852F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992981744165/4C4BE381538D84487C67B48A626F2159E0422A33/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c8d4e5", "Name": "CardCustom", "Transform": { "posX": -11.1644, "posY": 1.5167383, "posZ": 20.5792, "rotX": 359.920135, "rotY": 269.9999, "rotZ": 0.016872758, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alannah Stephens Asset", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 456500, "SidewaysCard": false, "CustomDeck": { "4565": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827168700/DED2261882C1654496D20BADE123E42AF540C195/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854923105727635761/94AEF1178557E194D20F9C85918FCF89B04FCC7A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e41426", "Name": "Deck", "Transform": { "posX": -2.72438383, "posY": 1.62076, "posZ": 0.373182058, "rotX": 359.919739, "rotY": 269.9985, "rotZ": 0.01683889, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 456200, 456000, 455900 ], "CustomDeck": { "4562": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538014735/26B84A238233D971717516FD72758382CD09651B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537647722/EDC5E6A351B7BD36891A70F1CC50EF2498D80649/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4560": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538013880/1423D3A2D00F38BAAC3C3DECCF34FFEF14A07B29/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861679450564628759/E16B4F2FE16C69C2F31CF56524CFDDE6F8966631/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4559": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538013261/C9A877A0A5FB586805D48DE5BCC33EAABFBD576E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861679450564627145/13B4237226212C1632682413D14FFAE601BEE6A4/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "610533", "Name": "CardCustom", "Transform": { "posX": -10.5401, "posY": 1.61181736, "posZ": -3.9541378, "rotX": 359.796082, "rotY": 270.000122, "rotZ": 0.0168732684, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 456200, "SidewaysCard": true, "CustomDeck": { "4562": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538014735/26B84A238233D971717516FD72758382CD09651B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537647722/EDC5E6A351B7BD36891A70F1CC50EF2498D80649/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1e402d", "Name": "CardCustom", "Transform": { "posX": -10.4457235, "posY": 1.64369166, "posZ": -4.308051, "rotX": 359.8709, "rotY": 270.00116, "rotZ": 0.01666603, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 456000, "SidewaysCard": false, "CustomDeck": { "4560": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538013880/1423D3A2D00F38BAAC3C3DECCF34FFEF14A07B29/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861679450564628759/E16B4F2FE16C69C2F31CF56524CFDDE6F8966631/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "53312f", "Name": "CardCustom", "Transform": { "posX": -11.0276728, "posY": 1.67842722, "posZ": -4.33953333, "rotX": 359.845947, "rotY": 269.998962, "rotZ": 0.0171217341, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 455900, "SidewaysCard": false, "CustomDeck": { "4559": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303538013261/C9A877A0A5FB586805D48DE5BCC33EAABFBD576E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861679450564627145/13B4237226212C1632682413D14FFAE601BEE6A4/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "e6ffd5", "Name": "CardCustom", "Transform": { "posX": -30.2248, "posY": 1.634949, "posZ": -7.69869947, "rotX": 359.920074, "rotY": 270.0043, "rotZ": 180.016525, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Siobhan's Apothecary", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 453200, "SidewaysCard": false, "CustomDeck": { "4532": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537930085/F037B412AB38344CF92FA930CAB7314417122CA4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992981745940/575CB72B5A6E7265BDEDEF7D9832945839197237/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ef0ee6", "Name": "Custom_Tile", "Transform": { "posX": -33.8987, "posY": 1.62528241, "posZ": -11.7132988, "rotX": 359.945465, "rotY": 329.9997, "rotZ": 359.9392, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "f246fe", "Name": "Deck", "Transform": { "posX": -3.92770863, "posY": 1.7106806, "posZ": 5.75750446, "rotX": 359.919739, "rotY": 270.0109, "rotZ": 0.0168289579, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 454800, 454700, 454600, 454500, 454400, 454300, 454200, 454100, 454000, 453900, 453800, 453700, 453600, 453500, 270000, 270000, 323700, 323600, 285800, 285800, 285800 ], "CustomDeck": { "4548": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537951596/1DFB3309D0598FDAEA5A560A18AD9D62A8292D75/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983516358/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4547": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537950393/8DF85ED4EDAF45193578F8DB0BF6ABD5A605EB11/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983516358/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4546": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537949362/8EFCAF719E84DBB4E8777777CD6064299E044183/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983516358/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4545": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537948580/7AC894B03F8943ADD9498F82C134D4CFFF4B78D0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983516358/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4544": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537947416/C46B5B80FFC75CB35FC823802E93170EE6202B41/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983515161/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537946801/D25AEFB833F1D22418FF09A05376F170B6A7247E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983515161/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4542": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537946090/36C03F3BF1775EA9F33B60DE57EB929452C20506/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983511385/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4541": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537945427/6036576D8CBED3A88D695F8358668D31FBF84352/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983511385/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4540": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537943279/C1D5E599ACBDD1206F63B1EC63F024DB5CAB2979/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983515161/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4539": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537942646/3A77EBD8D56833C3AA0A122679E85F89200994DB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983515161/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4538": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537941831/97563015EC58D1CE7CE8E7703BBB26D1F09AB85B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983510155/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4537": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537941159/F705C8C18E4E5446BD8507BC8C6B58E233CAF7D5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983510155/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537939798/01C5072E8DB5EE1222A027CA93955D89F78A9B82/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983509267/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4535": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537939071/67768841EB87FB671DCC8B0E9B2DF2593922E3F8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983509267/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2700": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595593/5CBAC88204812FF108F7DBF29A9C7B63412C5074/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3237": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179173291/72A8CB2FA9E03A2267C33441EE0B2F96B50B926C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3236": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179172666/089F3685557BD525F64970AA01EC2F31A98083D0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2858": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750187287024825123/55DE391B56ED8845C640F6DF42B52628861CB714/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "fe2342", "Name": "CardCustom", "Transform": { "posX": -12.4003162, "posY": 1.61421156, "posZ": -5.202124, "rotX": 359.91983, "rotY": 270.025635, "rotZ": 0.194060564, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 454800, "SidewaysCard": false, "CustomDeck": { "4548": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537951596/1DFB3309D0598FDAEA5A560A18AD9D62A8292D75/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983516358/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cb4fea", "Name": "CardCustom", "Transform": { "posX": -12.49902, "posY": 1.64534974, "posZ": -5.167192, "rotX": 359.918335, "rotY": 269.97464, "rotZ": 0.11008352, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 454700, "SidewaysCard": false, "CustomDeck": { "4547": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537950393/8DF85ED4EDAF45193578F8DB0BF6ABD5A605EB11/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983516358/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7844eb", "Name": "CardCustom", "Transform": { "posX": -12.40664, "posY": 1.612349, "posZ": 0.0347430222, "rotX": 359.920258, "rotY": 269.9922, "rotZ": 0.0171010084, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 454600, "SidewaysCard": false, "CustomDeck": { "4546": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537949362/8EFCAF719E84DBB4E8777777CD6064299E044183/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983516358/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fab44d", "Name": "CardCustom", "Transform": { "posX": -12.3948469, "posY": 1.64213824, "posZ": 0.3535534, "rotX": 359.9209, "rotY": 269.968933, "rotZ": 0.0222468488, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 454500, "SidewaysCard": false, "CustomDeck": { "4545": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537948580/7AC894B03F8943ADD9498F82C134D4CFFF4B78D0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983516358/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6f8e42", "Name": "CardCustom", "Transform": { "posX": -12.596261, "posY": 1.61419225, "posZ": 5.33091, "rotX": 359.9201, "rotY": 270.004456, "rotZ": 0.0167558081, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 454400, "SidewaysCard": false, "CustomDeck": { "4544": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537947416/C46B5B80FFC75CB35FC823802E93170EE6202B41/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983515161/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "169e8e", "Name": "CardCustom", "Transform": { "posX": -12.50383, "posY": 1.64386392, "posZ": 5.80669355, "rotX": 359.9205, "rotY": 270.007538, "rotZ": 0.01471003, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 454300, "SidewaysCard": false, "CustomDeck": { "4543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537946801/D25AEFB833F1D22418FF09A05376F170B6A7247E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983515161/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "65653e", "Name": "CardCustom", "Transform": { "posX": -12.762434, "posY": 1.67801178, "posZ": 5.36900139, "rotX": 359.919922, "rotY": 270.0057, "rotZ": 0.0167440884, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 454200, "SidewaysCard": false, "CustomDeck": { "4542": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537946090/36C03F3BF1775EA9F33B60DE57EB929452C20506/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983511385/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7e033f", "Name": "CardCustom", "Transform": { "posX": -12.7526636, "posY": 1.68766, "posZ": 5.50138474, "rotX": 359.9204, "rotY": 270.0046, "rotZ": 0.01640127, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 454100, "SidewaysCard": false, "CustomDeck": { "4541": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537945427/6036576D8CBED3A88D695F8358668D31FBF84352/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983511385/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c94b9b", "Name": "CardCustom", "Transform": { "posX": -12.8545189, "posY": 1.61489427, "posZ": 6.45722532, "rotX": 359.919525, "rotY": 270.010376, "rotZ": 0.0169397686, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 454000, "SidewaysCard": false, "CustomDeck": { "4540": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537943279/C1D5E599ACBDD1206F63B1EC63F024DB5CAB2979/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983515161/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eabfbf", "Name": "CardCustom", "Transform": { "posX": -12.7838383, "posY": 1.64456832, "posZ": 6.88746, "rotX": 359.9183, "rotY": 270.0238, "rotZ": 0.0124202408, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 453900, "SidewaysCard": false, "CustomDeck": { "4539": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537942646/3A77EBD8D56833C3AA0A122679E85F89200994DB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983515161/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ec8581", "Name": "CardCustom", "Transform": { "posX": -12.8833942, "posY": 1.67857218, "posZ": 6.64602, "rotX": 359.9199, "rotY": 270.004639, "rotZ": 0.0167829841, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 453800, "SidewaysCard": false, "CustomDeck": { "4538": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537941831/97563015EC58D1CE7CE8E7703BBB26D1F09AB85B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983510155/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d38692", "Name": "CardCustom", "Transform": { "posX": -12.9688282, "posY": 1.68842328, "posZ": 7.124566, "rotX": 359.92, "rotY": 270.005829, "rotZ": 0.0157131758, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 453700, "SidewaysCard": false, "CustomDeck": { "4537": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537941159/F705C8C18E4E5446BD8507BC8C6B58E233CAF7D5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983510155/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "82c633", "Name": "CardCustom", "Transform": { "posX": -12.7466908, "posY": 1.615953, "posZ": 10.6332455, "rotX": 359.9203, "rotY": 270.0036, "rotZ": 0.0166094, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 453600, "SidewaysCard": false, "CustomDeck": { "4536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537939798/01C5072E8DB5EE1222A027CA93955D89F78A9B82/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983509267/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "49090f", "Name": "CardCustom", "Transform": { "posX": -12.6551619, "posY": 1.6455878, "posZ": 10.8883524, "rotX": 359.921326, "rotY": 269.9989, "rotZ": 0.01673269, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 453500, "SidewaysCard": false, "CustomDeck": { "4535": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308303537939071/67768841EB87FB671DCC8B0E9B2DF2593922E3F8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1684896992983509267/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "95754c", "Name": "CardCustom", "Transform": { "posX": -12.1394119, "posY": 1.61335468, "posZ": -5.457373, "rotX": 359.9229, "rotY": 270.010223, "rotZ": 0.170542121, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 270000, "SidewaysCard": false, "CustomDeck": { "2700": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595593/5CBAC88204812FF108F7DBF29A9C7B63412C5074/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8099c7", "Name": "CardCustom", "Transform": { "posX": -11.9557657, "posY": 1.65352535, "posZ": -5.835239, "rotX": 359.920319, "rotY": 270.013245, "rotZ": 0.171567947, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 270000, "SidewaysCard": false, "CustomDeck": { "2700": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595593/5CBAC88204812FF108F7DBF29A9C7B63412C5074/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2c9de5", "Name": "CardCustom", "Transform": { "posX": -12.0633736, "posY": 1.67605078, "posZ": -5.832637, "rotX": 359.9201, "rotY": 269.996857, "rotZ": 0.1426227, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323700, "SidewaysCard": false, "CustomDeck": { "3237": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179173291/72A8CB2FA9E03A2267C33441EE0B2F96B50B926C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "570cba", "Name": "CardCustom", "Transform": { "posX": -12.1702023, "posY": 1.68624234, "posZ": -5.678298, "rotX": 359.915222, "rotY": 270.025024, "rotZ": 0.14542906, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323600, "SidewaysCard": false, "CustomDeck": { "3236": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179172666/089F3685557BD525F64970AA01EC2F31A98083D0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4a96c6", "Name": "CardCustom", "Transform": { "posX": -12.3063087, "posY": 1.69624138, "posZ": -5.604075, "rotX": 359.919281, "rotY": 270.005737, "rotZ": 0.1399735, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 285800, "SidewaysCard": false, "CustomDeck": { "2858": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750187287024825123/55DE391B56ED8845C640F6DF42B52628861CB714/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "22291d", "Name": "CardCustom", "Transform": { "posX": -12.1136971, "posY": 1.704793, "posZ": -5.907451, "rotX": 359.9202, "rotY": 270.0137, "rotZ": 0.137909949, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 285800, "SidewaysCard": false, "CustomDeck": { "2858": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750187287024825123/55DE391B56ED8845C640F6DF42B52628861CB714/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f074a8", "Name": "CardCustom", "Transform": { "posX": -12.4994946, "posY": 1.71412921, "posZ": -6.182721, "rotX": 359.916382, "rotY": 269.999481, "rotZ": 0.1421901, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 285800, "SidewaysCard": false, "CustomDeck": { "2858": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750187287024825123/55DE391B56ED8845C640F6DF42B52628861CB714/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "f25875", "Name": "Counter", "Transform": { "posX": -19.4875, "posY": 1.5877887, "posZ": -4.56110048, "rotX": 0.07995317, "rotY": 89.999794, "rotZ": 359.983154, "scaleX": 0.650000334, "scaleY": 0.650000334, "scaleZ": 0.650000334 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.541811943, "g": 0.008495264, "b": 0.008495264 }, "LayoutGroupSortIndex": 0, "Value": 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, "Counter": { "value": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f2de53", "Name": "Custom_Tile", "Transform": { "posX": -33.5242, "posY": 1.62592506, "posZ": -7.7490015, "rotX": 359.9201, "rotY": 269.991455, "rotZ": 0.0168790985, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "f508a2", "Name": "Counter", "Transform": { "posX": -19.4357986, "posY": 1.58547974, "posZ": -12.1722012, "rotX": 0.07994111, "rotY": 89.99988, "rotZ": 359.983154, "scaleX": 0.650000334, "scaleY": 0.650000334, "scaleZ": 0.650000334 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.541811943, "g": 0.008495264, "b": 0.008495264 }, "LayoutGroupSortIndex": 0, "Value": 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, "Counter": { "value": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ], "AttachedDecals": [ { "Transform": { "posX": -0.0021877822, "posY": -0.08963572, "posZ": -0.00288731651, "rotX": 270.0, "rotY": 359.869568, "rotZ": 0.0, "scaleX": 2.00000215, "scaleY": 2.00000238, "scaleZ": 2.00000262 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }, { "GUID": "072acf", "Name": "Custom_Model_Bag", "Transform": { "posX": 9.011203, "posY": 1.46984482, "posZ": 3.0492003, "rotX": 359.920135, "rotY": 269.9999, "rotZ": 0.0168755129, "scaleX": 1.29821277, "scaleY": 0.2702163, "scaleZ": 1.42157257 }, "Nickname": "The Stephens Manor", "Description": "Celtic Rising - Scenario 3", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754685726010475106/E3F48D6F997C0E923BE830B04716039B01BBB8BD/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CustomShader": { "SpecularColor": { "r": 1.0, "g": 1.0, "b": 1.0 }, "SpecularIntensity": 0.0, "SpecularSharpness": 2.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0c67cd\":{\"lock\":false,\"pos\":{\"x\":-33.606,\"y\":1.6295,\"z\":3.8594},\"rot\":{\"x\":0.0447,\"y\":45.1346,\"z\":359.9317}},\"0f09cf\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0121,\"z\":359.92}},\"291f55\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.7103,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":270.0067,\"z\":0.0168}},\"3eb415\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4411},\"rot\":{\"x\":359.9198,\"y\":269.9589,\"z\":0.0169}},\"4b0e3f\":{\"lock\":false,\"pos\":{\"x\":-33.4397,\"y\":1.6303,\"z\":7.696},\"rot\":{\"x\":359.9201,\"y\":270.0128,\"z\":0.0168}},\"4c675b\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9984,\"z\":180.0168}},\"6c605b\":{\"lock\":false,\"pos\":{\"x\":-33.7374,\"y\":1.6274,\"z\":-3.8237},\"rot\":{\"x\":359.9455,\"y\":329.9892,\"z\":359.9392}},\"6f2b6a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.0303},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-40.1812,\"y\":1.6375,\"z\":0.0726},\"rot\":{\"x\":359.9201,\"y\":270.0074,\"z\":0.0169}},\"771332\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6599,\"z\":-0.0296},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":179.3045}},\"81d075\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9999,\"z\":0.0687}},\"9021e8\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6223,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"93362d\":{\"lock\":false,\"pos\":{\"x\":-26.9107,\"y\":1.619,\"z\":-0.0242},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"aa4533\":{\"lock\":false,\"pos\":{\"x\":-33.6047,\"y\":1.6283,\"z\":0.0542},\"rot\":{\"x\":359.9201,\"y\":270.0099,\"z\":0.0169}},\"b4e8e0\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6316,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0147,\"z\":359.92}},\"c8a167\":{\"lock\":false,\"pos\":{\"x\":-43.37,\"y\":1.6555,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":180.0168}},\"d80ef4\":{\"lock\":false,\"pos\":{\"x\":-26.9544,\"y\":1.6178,\"z\":-4.1524},\"rot\":{\"x\":359.9316,\"y\":314.9879,\"z\":359.9554}},\"d8fe80\":{\"lock\":false,\"pos\":{\"x\":-27.0943,\"y\":1.6204,\"z\":3.8012},\"rot\":{\"x\":0.0446,\"y\":45.0159,\"z\":359.9316}},\"dcba15\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7107,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0157,\"z\":0.0168}},\"dd09a3\":{\"lock\":false,\"pos\":{\"x\":-2.6887,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9711,\"z\":0.0169}},\"f64476\":{\"lock\":false,\"pos\":{\"x\":-38.8278,\"y\":1.6621,\"z\":-2.2146},\"rot\":{\"x\":359.9202,\"y\":269.9824,\"z\":0.7279}},\"fe8831\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.65,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"ff9534\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9885,\"z\":0.0169}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "94ea03", "Name": "ScriptingTrigger", "Transform": { "posX": 12.5006714, "posY": 3.73406744, "posZ": 4.525813, "rotX": 0.0, "rotY": 89.99999, "rotZ": 0.0, "scaleX": 3.471745, "scaleY": 5.1, "scaleZ": 4.49798346 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0, "a": 0.509803951 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": true, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0c67cd", "Name": "Custom_Tile", "Transform": { "posX": -33.606, "posY": 1.62945092, "posZ": 3.85940027, "rotX": 0.04474913, "rotY": 45.1345749, "rotZ": 359.931732, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "0f09cf", "Name": "Custom_Tile", "Transform": { "posX": -36.7731, "posY": 1.6338675, "posZ": 3.86000013, "rotX": 359.9832, "rotY": 0.0121527808, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "291f55", "Name": "Deck", "Transform": { "posX": -17.1199265, "posY": 1.7103219, "posZ": 7.56990576, "rotX": 359.9201, "rotY": 270.006744, "rotZ": 0.0168365855, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fairy Weaknesses", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 326100, 326000, 325900, 325800, 325700, 325600, 325500, 325400, 325300, 325200, 325100, 325000, 324900, 324800, 324700, 324600, 324500 ], "CustomDeck": { "3261": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354218544/7C9DFC8739C6EDE801F03114D7FB4B9E3B56B475/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3260": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354216004/E5B63D3F7A6B6B7134755D075B5C111883CFCBBB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3259": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354214933/AD5FAD0A8ED89F3E5E2C0AF9B3B323B69E61D4FA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3258": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354213445/3E29D04217A4B7D5A759DB6BDAE55C34CCE6C69A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3257": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354212639/35242D3F14354097E1B71F2EF53D24CC77B827DC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3256": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354211565/08CFE158D78BF4726E4CE4C08110095B346E2E97/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3255": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354208738/2E3140CCD7B35A5221BA051218F3D1B61C2C26A6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3254": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354207334/5F0FCA87ACDE29AD1133763208B903BE35AE0710/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3253": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354206235/AEEAE45C6D6C3A9DBABA0B905B200CE1A88A9600/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3252": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354204316/FA938771ECAFAA5B3DCBDB34BE747A0D8BF47345/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3251": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354203627/9F9EAA6CB623B547708407782C3DB5875710CC19/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3250": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354202494/27F9815FFE1962A393981CF94862EA4DA534848B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3249": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354201789/F9A9C9DF664FD93525CC415CA1CFF56982D09A6B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3248": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354197127/D6FF214016EDA18CC9761D39AB92CD76099619F9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3247": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354195775/748E52007806AFEC360FC4BE189A23D3C5B9F1E1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3246": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354194132/6A792BC64EAFE954352C552D8BF27BF6C370B1C5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3245": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354192873/75EF2855D8A272003AD5FD926E9ECDC579EC2502/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "8e3ebb", "Name": "CardCustom", "Transform": { "posX": -14.0295658, "posY": 1.61281991, "posZ": -6.13631535, "rotX": 359.9201, "rotY": 269.993835, "rotZ": 0.01684836, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 326100, "SidewaysCard": false, "CustomDeck": { "3261": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354218544/7C9DFC8739C6EDE801F03114D7FB4B9E3B56B475/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "642f91", "Name": "CardCustom", "Transform": { "posX": -14.0550423, "posY": 1.67116916, "posZ": -6.03682852, "rotX": 359.9201, "rotY": 269.99823, "rotZ": 0.0166470464, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 326000, "SidewaysCard": false, "CustomDeck": { "3260": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354216004/E5B63D3F7A6B6B7134755D075B5C111883CFCBBB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ee0e48", "Name": "CardCustom", "Transform": { "posX": -14.0894547, "posY": 1.6813457, "posZ": -3.09647441, "rotX": 359.92926, "rotY": 269.993439, "rotZ": 359.941772, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325900, "SidewaysCard": false, "CustomDeck": { "3259": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354214933/AD5FAD0A8ED89F3E5E2C0AF9B3B323B69E61D4FA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e27109", "Name": "CardCustom", "Transform": { "posX": -13.9645519, "posY": 1.6898613, "posZ": -2.791451, "rotX": 359.959534, "rotY": 270.001373, "rotZ": 359.950073, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325800, "SidewaysCard": false, "CustomDeck": { "3258": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354213445/3E29D04217A4B7D5A759DB6BDAE55C34CCE6C69A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bee5bb", "Name": "CardCustom", "Transform": { "posX": -13.93143, "posY": 1.69965577, "posZ": -3.142611, "rotX": 359.968658, "rotY": 269.970581, "rotZ": 359.967, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325700, "SidewaysCard": false, "CustomDeck": { "3257": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354212639/35242D3F14354097E1B71F2EF53D24CC77B827DC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fc5fbb", "Name": "CardCustom", "Transform": { "posX": -13.8350325, "posY": 1.70891738, "posZ": -2.673493, "rotX": 359.9435, "rotY": 269.96875, "rotZ": 359.921753, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325600, "SidewaysCard": false, "CustomDeck": { "3256": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354211565/08CFE158D78BF4726E4CE4C08110095B346E2E97/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7e8411", "Name": "CardCustom", "Transform": { "posX": -13.7008467, "posY": 1.60960531, "posZ": -15.4879417, "rotX": 359.920166, "rotY": 270.005646, "rotZ": 0.016186377, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325500, "SidewaysCard": false, "CustomDeck": { "3255": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354208738/2E3140CCD7B35A5221BA051218F3D1B61C2C26A6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "693cab", "Name": "CardCustom", "Transform": { "posX": -13.7371912, "posY": 1.63927162, "posZ": -15.6880808, "rotX": 359.921234, "rotY": 270.003662, "rotZ": 0.0163703412, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325400, "SidewaysCard": false, "CustomDeck": { "3254": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354207334/5F0FCA87ACDE29AD1133763208B903BE35AE0710/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fa100c", "Name": "CardCustom", "Transform": { "posX": -13.9920588, "posY": 1.67361844, "posZ": -15.4720068, "rotX": 359.9216, "rotY": 270.045135, "rotZ": 0.0133371456, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325300, "SidewaysCard": false, "CustomDeck": { "3253": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354206235/AEEAE45C6D6C3A9DBABA0B905B200CE1A88A9600/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "586953", "Name": "CardCustom", "Transform": { "posX": -13.4424982, "posY": 1.68258762, "posZ": -15.2735939, "rotX": 359.920441, "rotY": 270.020844, "rotZ": 0.0130344629, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325200, "SidewaysCard": false, "CustomDeck": { "3252": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354204316/FA938771ECAFAA5B3DCBDB34BE747A0D8BF47345/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "273135", "Name": "CardCustom", "Transform": { "posX": -13.6072893, "posY": 1.69247544, "posZ": -15.0259209, "rotX": 359.9191, "rotY": 270.013, "rotZ": 0.0189243667, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325100, "SidewaysCard": false, "CustomDeck": { "3251": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354203627/9F9EAA6CB623B547708407782C3DB5875710CC19/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "559526", "Name": "CardCustom", "Transform": { "posX": -17.2671, "posY": 1.71742833, "posZ": -0.4265754, "rotX": 0.03798511, "rotY": 270.001038, "rotZ": 0.0168356653, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325000, "SidewaysCard": false, "CustomDeck": { "3250": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354202494/27F9815FFE1962A393981CF94862EA4DA534848B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "445666", "Name": "CardCustom", "Transform": { "posX": -17.3037949, "posY": 1.7264595, "posZ": -0.209660351, "rotX": 359.9201, "rotY": 270.000916, "rotZ": 0.0168391038, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324900, "SidewaysCard": false, "CustomDeck": { "3249": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354201789/F9A9C9DF664FD93525CC415CA1CFF56982D09A6B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "daa971", "Name": "CardCustom", "Transform": { "posX": -17.1118717, "posY": 1.73595941, "posZ": -0.1706929, "rotX": 359.9201, "rotY": 270.000916, "rotZ": 0.0168390367, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324800, "SidewaysCard": false, "CustomDeck": { "3248": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354197127/D6FF214016EDA18CC9761D39AB92CD76099619F9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d4917e", "Name": "CardCustom", "Transform": { "posX": -17.4969025, "posY": 1.7459147, "posZ": -0.0257444549, "rotX": 359.9201, "rotY": 270.0011, "rotZ": 0.0168391187, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324700, "SidewaysCard": false, "CustomDeck": { "3247": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354195775/748E52007806AFEC360FC4BE189A23D3C5B9F1E1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "02149c", "Name": "CardCustom", "Transform": { "posX": -17.01415, "posY": 1.75521469, "posZ": 0.05427879, "rotX": 359.9201, "rotY": 270.0011, "rotZ": 0.016838992, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324600, "SidewaysCard": false, "CustomDeck": { "3246": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354194132/6A792BC64EAFE954352C552D8BF27BF6C370B1C5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9c0207", "Name": "CardCustom", "Transform": { "posX": -16.7750874, "posY": 1.76462793, "posZ": -0.0242692586, "rotX": 359.9201, "rotY": 269.995758, "rotZ": 0.01684558, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324500, "SidewaysCard": false, "CustomDeck": { "3245": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354192873/75EF2855D8A272003AD5FD926E9ECDC579EC2502/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "3eb415", "Name": "CardCustom", "Transform": { "posX": -3.9560008, "posY": 1.59753942, "posZ": -10.4411011, "rotX": 359.919769, "rotY": 269.958862, "rotZ": 0.0168948341, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 327300, "SidewaysCard": false, "CustomDeck": { "3273": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861684358567218476/F314E0CC685EF34783E6ED6E5B1F4F6ECFB11110/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861684358567218836/CD26C8EA14F4B84305D339894F30CEA53451D07A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4b0e3f", "Name": "Custom_Tile", "Transform": { "posX": -33.4397, "posY": 1.63034654, "posZ": 7.696, "rotX": 359.9201, "rotY": 270.012817, "rotZ": 0.0168494023, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "4c675b", "Name": "CardCustom", "Transform": { "posX": -30.2242, "posY": 1.6371969, "posZ": -0.03009997, "rotX": 359.9201, "rotY": 269.9984, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "First Floor Landing", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324300, "SidewaysCard": false, "CustomDeck": { "3243": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354176431/C78341F165A451DC14B898363518C3F78EDD4640/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354176769/12B9C3D81BE1728A91D95DDB38CF16789851CEA2/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6c605b", "Name": "Custom_Tile", "Transform": { "posX": -33.7374, "posY": 1.62737608, "posZ": -3.8237, "rotX": 359.945465, "rotY": 329.989227, "rotZ": 359.9392, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "6f2b6a", "Name": "CardCustom", "Transform": { "posX": -23.6765, "posY": 1.62806642, "posZ": -0.0302998871, "rotX": 359.9201, "rotY": 269.9999, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Master Bedroom", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324400, "SidewaysCard": false, "CustomDeck": { "3244": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354177947/EB7ECFEB1AB7CBAD6F7BC3EF2DC9177E8CE28CDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354178323/343F34318BF8D42A30A545840EBBDE5840DD488C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7234af", "Name": "Custom_Tile", "Transform": { "posX": -40.1812, "posY": 1.63750648, "posZ": 0.07259972, "rotX": 359.9201, "rotY": 270.0074, "rotZ": 0.0168574061, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "771332", "Name": "CardCustom", "Transform": { "posX": -36.7733536, "posY": 1.64632452, "posZ": -0.0293075871, "rotX": 359.919861, "rotY": 269.984741, "rotZ": 180.014343, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hallway", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324200, "SidewaysCard": false, "CustomDeck": { "3242": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354174178/A4BBD79957647D972F8B0D6D2DB0BD857A6424BF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354174509/1EEAFA000DB0C28AF4FF2AA13FD58989EF0C6458/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "81d075", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69640076, "posY": 1.55831814, "posZ": 14.2788019, "rotX": 359.955139, "rotY": 224.9999, "rotZ": 0.06867157, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.67770046, "g": 0.629293263, "b": 0.67770046 }, "LayoutGroupSortIndex": 0, "Value": 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": "faf792", "Name": "CardCustom", "Transform": { "posX": 3.01056385, "posY": 1.59792149, "posZ": -0.5052293, "rotX": 359.920135, "rotY": 269.999969, "rotZ": 0.0168742035, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Poisoned Vial", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442100, "SidewaysCard": false, "CustomDeck": { "4421": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354325208/AC3B0269B4DF950A68707B694801EE412E286D93/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a6012b", "Name": "Deck", "Transform": { "posX": 2.31106, "posY": 1.6518085, "posZ": -5.317135, "rotX": 359.920135, "rotY": 270.000671, "rotZ": 0.01687523, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Celtic Relics", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 442200, 442300, 442500, 442400, 442100 ], "CustomDeck": { "4422": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354317372/41F9FCA94DE69D967683DDC5B6EC8A254231678F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4423": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354318098/5E08822AA9A0E67683C771F8BCCA6A032271F445/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4425": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354322341/3955D88782C7ABF4AC172C1F3285EB7051ECDA86/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4424": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354321628/6E8E7CD309C4849ABE5E6C74D3920131C3D0F819/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4421": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354316729/2EDD8E9DD3425C4C9BAB548CC8A4F795E608560C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "1db455", "Name": "CardCustom", "Transform": { "posX": -5.60285568, "posY": 1.51139879, "posZ": 28.7766323, "rotX": 359.920135, "rotY": 269.971283, "rotZ": 0.0169130228, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442200, "SidewaysCard": false, "CustomDeck": { "4422": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354317372/41F9FCA94DE69D967683DDC5B6EC8A254231678F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ec5159", "Name": "CardCustom", "Transform": { "posX": -5.602884, "posY": 1.51283336, "posZ": 33.6482735, "rotX": 359.920135, "rotY": 270.000732, "rotZ": 0.0168720651, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442300, "SidewaysCard": false, "CustomDeck": { "4423": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354318098/5E08822AA9A0E67683C771F8BCCA6A032271F445/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d98b49", "Name": "CardCustom", "Transform": { "posX": 0.270130426, "posY": 1.504646, "posZ": 33.6485939, "rotX": 359.920135, "rotY": 270.0007, "rotZ": 0.0168713, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442500, "SidewaysCard": false, "CustomDeck": { "4425": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354322341/3955D88782C7ABF4AC172C1F3285EB7051ECDA86/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ef266a", "Name": "CardCustom", "Transform": { "posX": 0.2700666, "posY": 1.5032115, "posZ": 28.77696, "rotX": 359.920135, "rotY": 270.0006, "rotZ": 0.0168717969, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442400, "SidewaysCard": false, "CustomDeck": { "4424": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354321628/6E8E7CD309C4849ABE5E6C74D3920131C3D0F819/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3e7bd1", "Name": "CardCustom", "Transform": { "posX": 0.3785543, "posY": 1.538244, "posZ": 28.75994, "rotX": 359.920135, "rotY": 270.002869, "rotZ": 0.016868962, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442100, "SidewaysCard": false, "CustomDeck": { "4421": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354316729/2EDD8E9DD3425C4C9BAB548CC8A4F795E608560C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "2c1807", "Name": "CardCustom", "Transform": { "posX": 0.69905293, "posY": 3.666043, "posZ": 16.9704723, "rotX": 359.920135, "rotY": 270.003052, "rotZ": 0.0168695115, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Loyal Marie", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442100, "SidewaysCard": false, "CustomDeck": { "4421": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354314807/FACB0E30595CEE8423F4FE8752BCF871262D9DE2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3e426c", "Name": "CardCustom", "Transform": { "posX": 1.97554421, "posY": 1.538933, "posZ": 18.8512058, "rotX": 359.920135, "rotY": 269.9864, "rotZ": 0.01689217, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Remorseful Pete", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442000, "SidewaysCard": false, "CustomDeck": { "4420": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354314147/59722BF5833FFE662127D347BF74E336E5B37A9C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "605e46", "Name": "Deck", "Transform": { "posX": 9.011405, "posY": 1.72261631, "posZ": -30.30543, "rotX": 359.919739, "rotY": 269.968719, "rotZ": 180.016876, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locations", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 442000, 441400, 441300, 441500, 441800, 441900 ], "CustomDeck": { "4420": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354305925/35325BCAC7316C97CFBCCE1BA07B9D44311A2378/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751677487/2E0D8AF2B3EDC365F81D9D76BE92DCFD1F50EF2C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4414": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354298523/FD82BA13F4345707F8A2C64D09D886987E9C2718/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354298890/53224696A4BC4350290BCD5934199F7100CE20BA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4413": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354297279/D9B81C2262383D76737D367E6C52DF8F33AFF990/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354297591/987E3342A4771E81F18E273B3CF62BA6406248BF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4415": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354302662/399BC3E4A4D8349D4CDF04AF2F11077CD0332BF0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354303113/7B3888E3B33278AC4F9482EDCF12B9A9516129D5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4418": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354307716/D5240CE1BE83C5F41F647E9D6F19E06260040F2F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354308062/6F543C72C0B87B699B2845BEA8B873AFAF1A73E7/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4419": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354304174/E2EDEEAB558CE6B649B3CD4CF900AA3AC6D4320E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751676441/18E2A580ECBAD43C07285C3399C87CA674EC6FFA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "ac1b59", "Name": "CardCustom", "Transform": { "posX": -17.57119, "posY": 1.65201843, "posZ": -7.82666731, "rotX": 359.9201, "rotY": 269.997437, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Maids Room", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442000, "SidewaysCard": false, "CustomDeck": { "4420": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354305925/35325BCAC7316C97CFBCCE1BA07B9D44311A2378/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751677487/2E0D8AF2B3EDC365F81D9D76BE92DCFD1F50EF2C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7e59a1", "Name": "CardCustom", "Transform": { "posX": -17.1200619, "posY": 1.61666989, "posZ": -7.700004, "rotX": 359.9201, "rotY": 269.997284, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Kitchen", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441400, "SidewaysCard": false, "CustomDeck": { "4414": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354298523/FD82BA13F4345707F8A2C64D09D886987E9C2718/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354298890/53224696A4BC4350290BCD5934199F7100CE20BA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7cce0b", "Name": "CardCustom", "Transform": { "posX": -17.1199951, "posY": 1.61555, "posZ": -11.510004, "rotX": 359.9201, "rotY": 269.997375, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dining Room", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441300, "SidewaysCard": false, "CustomDeck": { "4413": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354297279/D9B81C2262383D76737D367E6C52DF8F33AFF990/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354297591/987E3342A4771E81F18E273B3CF62BA6406248BF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fcb99e", "Name": "CardCustom", "Transform": { "posX": -17.1201077, "posY": 1.61444223, "posZ": -15.2800035, "rotX": 359.9201, "rotY": 269.997437, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Front Room", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441500, "SidewaysCard": false, "CustomDeck": { "4415": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354302662/399BC3E4A4D8349D4CDF04AF2F11077CD0332BF0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354303113/7B3888E3B33278AC4F9482EDCF12B9A9516129D5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "34932f", "Name": "CardCustom", "Transform": { "posX": -20.83609, "posY": 1.62178612, "posZ": -7.9173646, "rotX": 359.919922, "rotY": 269.974365, "rotZ": 180.02095, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Study", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441800, "SidewaysCard": false, "CustomDeck": { "4418": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354307716/D5240CE1BE83C5F41F647E9D6F19E06260040F2F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354308062/6F543C72C0B87B699B2845BEA8B873AFAF1A73E7/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a3879b", "Name": "CardCustom", "Transform": { "posX": -12.3217726, "posY": 1.60992527, "posZ": -7.90078259, "rotX": 359.919678, "rotY": 269.995483, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Butlers Room", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441900, "SidewaysCard": false, "CustomDeck": { "4419": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354304174/E2EDEEAB558CE6B649B3CD4CF900AA3AC6D4320E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751676441/18E2A580ECBAD43C07285C3399C87CA674EC6FFA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "351266", "Name": "Deck", "Transform": { "posX": 5.18375254, "posY": 1.8506254, "posZ": 8.835571, "rotX": 359.9201, "rotY": 270.021362, "rotZ": 0.0168458372, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Elite Enemies", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 270900, 270800, 270700, 322800, 442100, 441000, 441100, 442000 ], "CustomDeck": { "2709": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962616115/989FA413E3893845663ED6AF5A1A01B1E1E69740/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962616596/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2708": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962614791/A3CA6D997D82590F5BBC5D284F20A100A9A3BF24/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962615241/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2707": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962613149/C0882C9493ECF389B6B35686CF5466921E3FE46D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962614201/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3228": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962609867/3C09DCB9DF6B0F6860F1C01D6DCB9C705557EA7B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962610320/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4421": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354311304/61F8D3C72BDF308F8F1C322C0CC7E093F488D2BF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962612298/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4410": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861679450564635155/CEB7D98A6EE917034995C313FCBA0E551C0254DC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962611312/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4411": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962608533/7D0E4ACB1899ABEAFAF3B04F7297E751DEDA0E8A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962608828/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4420": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354310364/8D8EA2E0E353AF974760E049E645CBFC90C7C3FD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962607572/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9165f2", "Name": "CardCustom", "Transform": { "posX": -36.77317, "posY": 1.64856255, "posZ": 7.56999, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 0.0168396439, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 270900, "SidewaysCard": false, "CustomDeck": { "2709": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962616115/989FA413E3893845663ED6AF5A1A01B1E1E69740/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962616596/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "27931a", "Name": "CardCustom", "Transform": { "posX": -36.37664, "posY": 1.68326128, "posZ": 7.54109955, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.01683945, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 270800, "SidewaysCard": false, "CustomDeck": { "2708": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962614791/A3CA6D997D82590F5BBC5D284F20A100A9A3BF24/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962615241/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1f0a7e", "Name": "CardCustom", "Transform": { "posX": -37.12064, "posY": 1.7177304, "posZ": 7.421356, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 0.0168394633, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 270700, "SidewaysCard": false, "CustomDeck": { "2707": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962613149/C0882C9493ECF389B6B35686CF5466921E3FE46D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962614201/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d33be9", "Name": "CardCustom", "Transform": { "posX": -11.9877234, "posY": 1.65916955, "posZ": 4.89345837, "rotX": 358.200226, "rotY": 270.671875, "rotZ": 0.0142944725, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322800, "SidewaysCard": false, "CustomDeck": { "2965": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962609867/3C09DCB9DF6B0F6860F1C01D6DCB9C705557EA7B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962610320/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8da5d7", "Name": "CardCustom", "Transform": { "posX": -3.25257564, "posY": 1.50580144, "posZ": 20.8977222, "rotX": 359.920166, "rotY": 269.9653, "rotZ": 0.0168158375, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442100, "SidewaysCard": false, "CustomDeck": { "4421": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354311304/61F8D3C72BDF308F8F1C322C0CC7E093F488D2BF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962612298/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2583eb", "Name": "CardCustom", "Transform": { "posX": -2.95019841, "posY": 1.5352025, "posZ": 21.2960739, "rotX": 359.920471, "rotY": 269.982147, "rotZ": 0.0156050129, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441000, "SidewaysCard": false, "CustomDeck": { "4410": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861679450564635155/CEB7D98A6EE917034995C313FCBA0E551C0254DC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962611312/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "59d67a", "Name": "CardCustom", "Transform": { "posX": -3.13402581, "posY": 1.56915843, "posZ": 20.5097084, "rotX": 359.9207, "rotY": 269.99527, "rotZ": 0.016471114, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441100, "SidewaysCard": false, "CustomDeck": { "4411": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962608533/7D0E4ACB1899ABEAFAF3B04F7297E751DEDA0E8A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962608828/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eaec7f", "Name": "CardCustom", "Transform": { "posX": -3.29526782, "posY": 1.57909679, "posZ": 20.84386, "rotX": 359.918762, "rotY": 270.0044, "rotZ": 0.0141575681, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442000, "SidewaysCard": false, "CustomDeck": { "4420": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354310364/8D8EA2E0E353AF974760E049E645CBFC90C7C3FD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962607572/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "d3c6aa", "Name": "Deck", "Transform": { "posX": 20.8709888, "posY": 1.64838111, "posZ": -16.4056568, "rotX": 359.920135, "rotY": 269.984131, "rotZ": 0.0168971289, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Beyond the Grave", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 303500, 303400, 322600, 322700, 303100, 303000 ], "CustomDeck": { "3035": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762737858/D72A298C335B6B135BE330CB4BEBD2B659EF92B3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962585380/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3034": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762737413/576B1AD316716F785277D76BDC1344D8B4B270D2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962585380/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3226": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861684065935811354/AAA6B7D4F797433AE84E867E3A71A3758F8F3741/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962584690/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3227": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861684065935810545/FB25E2B8B1F1FB4D59BC4217770C3BCD6CFF400F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962584690/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3031": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762735713/6BE812D3C732B605DE8F8FAD0959BE8ABCCF9C34/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962583973/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3030": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762735223/5589AEBC603B29AE2A18D1F1435DD91C9AC44BEB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962583973/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "442d82", "Name": "CardCustom", "Transform": { "posX": -12.7401981, "posY": 1.61269057, "posZ": -0.445762277, "rotX": 359.920044, "rotY": 270.004333, "rotZ": 0.0164979361, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 303500, "SidewaysCard": false, "CustomDeck": { "3035": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762737858/D72A298C335B6B135BE330CB4BEBD2B659EF92B3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962585380/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d31978", "Name": "CardCustom", "Transform": { "posX": -12.332943, "posY": 1.64184666, "posZ": -0.476963878, "rotX": 359.918365, "rotY": 269.997559, "rotZ": 0.0166233033, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 303400, "SidewaysCard": false, "CustomDeck": { "3034": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762737413/576B1AD316716F785277D76BDC1344D8B4B270D2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962585380/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8bee44", "Name": "CardCustom", "Transform": { "posX": -11.8918524, "posY": 1.67751956, "posZ": 7.77279568, "rotX": 359.922119, "rotY": 269.9387, "rotZ": 0.0296894256, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322600, "SidewaysCard": false, "CustomDeck": { "3224": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861684065935811354/AAA6B7D4F797433AE84E867E3A71A3758F8F3741/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962584690/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "df6c14", "Name": "CardCustom", "Transform": { "posX": -12.2579966, "posY": 1.68795729, "posZ": 7.68780375, "rotX": 359.921631, "rotY": 269.9809, "rotZ": 0.0156300385, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322700, "SidewaysCard": false, "CustomDeck": { "3223": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861684065935810545/FB25E2B8B1F1FB4D59BC4217770C3BCD6CFF400F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962584690/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "76f5cd", "Name": "CardCustom", "Transform": { "posX": -11.6252365, "posY": 1.69655132, "posZ": 8.16451, "rotX": 359.920044, "rotY": 269.9917, "rotZ": 0.0175772347, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 303100, "SidewaysCard": false, "CustomDeck": { "3031": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762735713/6BE812D3C732B605DE8F8FAD0959BE8ABCCF9C34/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962583973/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d8ae45", "Name": "CardCustom", "Transform": { "posX": -12.088109, "posY": 1.70673549, "posZ": 7.884489, "rotX": 359.921753, "rotY": 269.995575, "rotZ": 0.0172045939, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 303000, "SidewaysCard": false, "CustomDeck": { "3030": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762735223/5589AEBC603B29AE2A18D1F1435DD91C9AC44BEB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962583973/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "b3b9e2", "Name": "CardCustom", "Transform": { "posX": 14.4538708, "posY": 1.48950028, "posZ": 4.15339231, "rotX": 359.920135, "rotY": 270.003174, "rotZ": 0.0168679617, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Marie Sloan", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441200, "SidewaysCard": false, "CustomDeck": { "4412": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354295668/61EA13140DFE1838637BC74E47D85F268174B6C4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627355989465/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "9021e8", "Name": "CardCustom", "Transform": { "posX": -17.12, "posY": 1.62230074, "posZ": 11.46, "rotX": 359.9201, "rotY": 269.9999, "rotZ": 0.0168397576, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 326200, "SidewaysCard": false, "CustomDeck": { "3262": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354249577/FED82D118BC75A6D0B3F9F422DFCC575718ABA8B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "93362d", "Name": "Custom_Tile", "Transform": { "posX": -26.9107, "posY": 1.61897326, "posZ": -0.02420021, "rotX": 359.9201, "rotY": 269.9999, "rotZ": 0.0168676265, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "aa4533", "Name": "Custom_Tile", "Transform": { "posX": -33.6047, "posY": 1.62833071, "posZ": 0.0541997068, "rotX": 359.9201, "rotY": 270.009857, "rotZ": 0.016853597, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "b4e8e0", "Name": "Custom_Tile", "Transform": { "posX": -36.7731, "posY": 1.63160741, "posZ": -3.82999945, "rotX": 359.9832, "rotY": 0.0146880765, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "c8a167", "Name": "CardCustom", "Transform": { "posX": -43.3700027, "posY": 1.65552783, "posZ": -0.0299998969, "rotX": 359.9201, "rotY": 269.999268, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 327400, "SidewaysCard": false, "CustomDeck": { "3274": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354170775/B07D8527D7EFA2A46C301218E6D425583E358C15/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354171131/810B02F5F4522892A229A819911E394ACC3230DC/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d80ef4", "Name": "Custom_Tile", "Transform": { "posX": -26.9544, "posY": 1.617821, "posZ": -4.1524, "rotX": 359.93158, "rotY": 314.987885, "rotZ": 359.9554, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "d8fe80", "Name": "Custom_Tile", "Transform": { "posX": -27.0943, "posY": 1.6203537, "posZ": 3.80120039, "rotX": 0.04460766, "rotY": 45.0159073, "rotZ": 359.931641, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "dcba15", "Name": "Deck", "Transform": { "posX": -3.92770815, "posY": 1.71068048, "posZ": 5.7571044, "rotX": 359.919739, "rotY": 270.0157, "rotZ": 0.0168223549, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 302900, 302800, 302700, 302600, 290800, 290700, 290600, 291100, 291000, 290900, 327700, 327600, 327500, 327800, 328100, 328000, 327900, 328200, 328300, 328400, 328500 ], "CustomDeck": { "3029": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762732198/B450EDF1A2E9FF514ACFF9B5FF2C5E70137A96C7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962580427/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3028": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762731449/610786F7714C4CC8B55280873E0B37AA3BD8B2FA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962580427/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3027": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762728903/40C846C1BBFDDFE88BDDCF0CE14E840457444090/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962579135/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3026": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762728333/2F704B12418CE957E791EEF80E668CC56B1D4CBF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962578575/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675844/0BD158D07C53E6277273DB0E6976DF7108423B9F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2907": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675209/71C4DAB750F419D6DA2008B745AF43C6868F2A82/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2906": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762674772/09067380449F84FD40C4A54944E9627E7DB76AD6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2911": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678997/2FFD464BE85B3C06E492DE79841B2004920CB315/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678551/9BF0D765FC571B006FF6BD776A4EC1DE2BEE0FD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2909": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678147/E425D57C815C44B898C503C81B0E55A27175245B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3277": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354272704/B10B19BBA4DDA8CF7EBD14548C2B5F232B084D48/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3276": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354271596/C76D1157A294CF5CD1C598A5F3B82D6359A439D7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3275": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354270555/0E3602EE9C4BCA7580805D5F9CAC4CF1C5D18DFB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3278": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354269511/00269E900F4F0CECC68B8BD6F346B511BB6571C6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3281": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354277331/738D0B4BF13E2B039057985606226010A063068B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962569304/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3280": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354276711/5398846946E05BEB0BE0406885F74894CC80C601/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962569304/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3279": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354275791/5A4390D7B9B3DB828DBE87F63A87542B3061DC32/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3282": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354274952/DD4405F2EEBBE68AAD5410E6899C74A0F4DBA85C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3283": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354279651/72984D1768964733D2316CACCA1420BEC4D5DCB4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962565352/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3284": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354285477/E799F6470E6B2C4B485E3C983B72047294F85240/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962564207/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3285": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354286838/710B016EF3178C94147A26F3066A035FA46DF04F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962563131/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "cff1fa", "Name": "CardCustom", "Transform": { "posX": -11.6148634, "posY": 1.61332309, "posZ": 7.035543, "rotX": 359.9201, "rotY": 270.008057, "rotZ": 0.0167177785, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 302900, "SidewaysCard": false, "CustomDeck": { "3029": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762732198/B450EDF1A2E9FF514ACFF9B5FF2C5E70137A96C7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962580427/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "da34d0", "Name": "CardCustom", "Transform": { "posX": -11.5346, "posY": 1.64299643, "posZ": 7.42649364, "rotX": 359.920624, "rotY": 270.0054, "rotZ": 0.0151907047, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 302800, "SidewaysCard": false, "CustomDeck": { "3028": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762731449/610786F7714C4CC8B55280873E0B37AA3BD8B2FA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962580427/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5c839e", "Name": "CardCustom", "Transform": { "posX": -11.719533, "posY": 1.61328578, "posZ": 6.42212248, "rotX": 359.919373, "rotY": 270.0061, "rotZ": 0.0165083632, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 302700, "SidewaysCard": false, "CustomDeck": { "3027": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762728903/40C846C1BBFDDFE88BDDCF0CE14E840457444090/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962579135/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d42f7b", "Name": "CardCustom", "Transform": { "posX": -11.8741617, "posY": 1.64318025, "posZ": 6.462775, "rotX": 359.9157, "rotY": 269.989258, "rotZ": 0.0158844683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 302600, "SidewaysCard": false, "CustomDeck": { "3026": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762728333/2F704B12418CE957E791EEF80E668CC56B1D4CBF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962578575/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4a96c6", "Name": "CardCustom", "Transform": { "posX": -17.1200123, "posY": 1.62006724, "posZ": 3.86000156, "rotX": 359.9201, "rotY": 269.9975, "rotZ": 0.01684315, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290800, "SidewaysCard": false, "CustomDeck": { "2908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675844/0BD158D07C53E6277273DB0E6976DF7108423B9F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "22291d", "Name": "CardCustom", "Transform": { "posX": -17.1859512, "posY": 1.65514553, "posZ": 3.68097734, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168435723, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290700, "SidewaysCard": false, "CustomDeck": { "2907": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675209/71C4DAB750F419D6DA2008B745AF43C6868F2A82/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f074a8", "Name": "CardCustom", "Transform": { "posX": -17.01297, "posY": 1.68891919, "posZ": 3.85620785, "rotX": 359.9201, "rotY": 269.9975, "rotZ": 0.0168434177, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290600, "SidewaysCard": false, "CustomDeck": { "2906": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762674772/09067380449F84FD40C4A54944E9627E7DB76AD6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0d2fa", "Name": "CardCustom", "Transform": { "posX": -17.1199932, "posY": 1.62006712, "posZ": 3.85999751, "rotX": 359.9201, "rotY": 269.9976, "rotZ": 0.0168430153, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291100, "SidewaysCard": false, "CustomDeck": { "2911": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678997/2FFD464BE85B3C06E492DE79841B2004920CB315/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e954bb", "Name": "CardCustom", "Transform": { "posX": -16.8623829, "posY": 1.65489781, "posZ": 3.8260293, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168433338, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291000, "SidewaysCard": false, "CustomDeck": { "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678551/9BF0D765FC571B006FF6BD776A4EC1DE2BEE0FD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9340b8", "Name": "CardCustom", "Transform": { "posX": -17.0704746, "posY": 1.68896, "posZ": 3.87464452, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168435778, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290900, "SidewaysCard": false, "CustomDeck": { "2909": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678147/E425D57C815C44B898C503C81B0E55A27175245B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fa2b03", "Name": "CardCustom", "Transform": { "posX": -11.7679167, "posY": 1.60716379, "posZ": -14.7332478, "rotX": 359.9186, "rotY": 270.005127, "rotZ": 0.01631925, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 327700, "SidewaysCard": false, "CustomDeck": { "3277": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354272704/B10B19BBA4DDA8CF7EBD14548C2B5F232B084D48/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0fcec", "Name": "CardCustom", "Transform": { "posX": -11.8494873, "posY": 1.63693452, "posZ": -14.881546, "rotX": 359.913818, "rotY": 269.9959, "rotZ": 0.00735265, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 327600, "SidewaysCard": false, "CustomDeck": { "3276": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354271596/C76D1157A294CF5CD1C598A5F3B82D6359A439D7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "548921", "Name": "CardCustom", "Transform": { "posX": -11.5469046, "posY": 1.67052543, "posZ": -14.48766, "rotX": 359.91864, "rotY": 269.976532, "rotZ": 0.02124395, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 327500, "SidewaysCard": false, "CustomDeck": { "3275": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354270555/0E3602EE9C4BCA7580805D5F9CAC4CF1C5D18DFB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "363621", "Name": "CardCustom", "Transform": { "posX": -11.9727926, "posY": 1.68088484, "posZ": -13.7875557, "rotX": 359.916473, "rotY": 270.020966, "rotZ": 0.00664025731, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 327800, "SidewaysCard": false, "CustomDeck": { "3274": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354269511/00269E900F4F0CECC68B8BD6F346B511BB6571C6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d3f758", "Name": "CardCustom", "Transform": { "posX": -11.449564, "posY": 1.69122124, "posZ": -9.292439, "rotX": 359.916046, "rotY": 270.0111, "rotZ": 0.0147425449, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328100, "SidewaysCard": false, "CustomDeck": { "3281": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354277331/738D0B4BF13E2B039057985606226010A063068B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962569304/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4a120b", "Name": "CardCustom", "Transform": { "posX": -10.9522505, "posY": 1.70033514, "posZ": -8.736977, "rotX": 359.918182, "rotY": 270.005585, "rotZ": 0.0121358177, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328000, "SidewaysCard": false, "CustomDeck": { "3280": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354276711/5398846946E05BEB0BE0406885F74894CC80C601/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962569304/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "45956a", "Name": "CardCustom", "Transform": { "posX": -11.1522627, "posY": 1.71083379, "posZ": -8.474529, "rotX": 359.9076, "rotY": 270.000366, "rotZ": 0.0525485463, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 327900, "SidewaysCard": false, "CustomDeck": { "3279": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354275791/5A4390D7B9B3DB828DBE87F63A87542B3061DC32/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f74c1d", "Name": "CardCustom", "Transform": { "posX": -11.1600084, "posY": 1.71985292, "posZ": -8.617916, "rotX": 359.920319, "rotY": 269.98053, "rotZ": 0.0215951428, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328200, "SidewaysCard": false, "CustomDeck": { "3278": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354274952/DD4405F2EEBBE68AAD5410E6899C74A0F4DBA85C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962568294/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c1f6ba", "Name": "CardCustom", "Transform": { "posX": -11.4145432, "posY": 1.73306918, "posZ": 2.300447, "rotX": 359.920227, "rotY": 270.0023, "rotZ": 0.0163639113, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328300, "SidewaysCard": false, "CustomDeck": { "3282": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354279651/72984D1768964733D2316CACCA1420BEC4D5DCB4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962565352/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "069858", "Name": "CardCustom", "Transform": { "posX": -11.65034, "posY": 1.74291039, "posZ": 1.68047273, "rotX": 359.919, "rotY": 270.0417, "rotZ": 0.007892975, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328400, "SidewaysCard": false, "CustomDeck": { "3284": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354285477/E799F6470E6B2C4B485E3C983B72047294F85240/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962564207/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1333ab", "Name": "CardCustom", "Transform": { "posX": -11.90268, "posY": 1.75294471, "posZ": 2.32843733, "rotX": 359.9199, "rotY": 270.001648, "rotZ": 0.01611293, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328500, "SidewaysCard": false, "CustomDeck": { "3285": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354286838/710B016EF3178C94147A26F3066A035FA46DF04F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962563131/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "dd09a3", "Name": "Deck", "Transform": { "posX": -2.688727, "posY": 1.6191169, "posZ": -5.04849529, "rotX": 359.919739, "rotY": 269.971069, "rotZ": 0.0168776065, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 327200, 327100, 327000 ], "CustomDeck": { "3272": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354262488/59373A099FA2315F7835AE753734E4E04F592324/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354262832/3D29FA42D21AB7D598B8FC07F831A6BC8F844860/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3271": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354261159/746A889F9A136B6F3688CC298FC86E1081656EBC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354261583/77F590E93F1F1992BBBCD3EFFC7A9C497B96EAD8/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3270": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354260224/C76FDDD2C6B841DB37EB200F2073528A7BFAF257/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354260417/46F37070EDBAFD328B488D100A69FD8A68CEC8EA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4eb810", "Name": "CardCustom", "Transform": { "posX": -10.5363569, "posY": 1.61182749, "posZ": -3.87730813, "rotX": 359.796173, "rotY": 269.970978, "rotZ": 0.0169701315, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 327200, "SidewaysCard": false, "CustomDeck": { "3272": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354262488/59373A099FA2315F7835AE753734E4E04F592324/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354262832/3D29FA42D21AB7D598B8FC07F831A6BC8F844860/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "995d86", "Name": "CardCustom", "Transform": { "posX": -10.70928, "posY": 1.644235, "posZ": -3.99268556, "rotX": 359.8618, "rotY": 269.9994, "rotZ": 0.016403025, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 327100, "SidewaysCard": false, "CustomDeck": { "3271": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354261159/746A889F9A136B6F3688CC298FC86E1081656EBC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354261583/77F590E93F1F1992BBBCD3EFFC7A9C497B96EAD8/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "90eb10", "Name": "CardCustom", "Transform": { "posX": -10.4943056, "posY": 1.67803133, "posZ": -3.639763, "rotX": 359.8727, "rotY": 270.007965, "rotZ": 0.0169405825, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 327000, "SidewaysCard": false, "CustomDeck": { "3270": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354260224/C76FDDD2C6B841DB37EB200F2073528A7BFAF257/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354260417/46F37070EDBAFD328B488D100A69FD8A68CEC8EA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "f64476", "Name": "CardCustom", "Transform": { "posX": -38.82796, "posY": 1.64854765, "posZ": -2.21457386, "rotX": 359.920746, "rotY": 269.992371, "rotZ": 0.0189567525, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328600, "SidewaysCard": false, "CustomDeck": { "3286": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354172743/84BA7B5AB255DFCBF364949696AD587A7E036FDB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627355990990/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fe8831", "Name": "Deck", "Transform": { "posX": -17.1201286, "posY": 1.64997911, "posZ": 15.190011, "rotX": 359.9201, "rotY": 269.999878, "rotZ": 0.0168424621, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 326300, 326400, 326500, 328700 ], "CustomDeck": { "3263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354251416/EC2FF1708F8AD61B605F3B60A5972E7875F52DC6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3264": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354252391/49031D53CC3652CA88761B9D1FF6001A6CA0BC92/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3265": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354253180/2A222CCA5E08101582F47604C7BBAFFC8171FE30/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3287": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1924742988089311079/4302F29635F849AD7D7AA42543040A4C14747D04/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "220895", "Name": "CardCustom", "Transform": { "posX": -17.12006, "posY": 1.62339711, "posZ": 15.1900043, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.0168397967, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 326300, "SidewaysCard": false, "CustomDeck": { "3263": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354251416/EC2FF1708F8AD61B605F3B60A5972E7875F52DC6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "34ba64", "Name": "CardCustom", "Transform": { "posX": -17.3582859, "posY": 1.658699, "posZ": 15.3105526, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.01684039, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 326400, "SidewaysCard": false, "CustomDeck": { "3264": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354252391/49031D53CC3652CA88761B9D1FF6001A6CA0BC92/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "42e985", "Name": "CardCustom", "Transform": { "posX": -17.6377277, "posY": 1.69284725, "posZ": 15.5622911, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.0168401562, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 326500, "SidewaysCard": false, "CustomDeck": { "3265": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354253180/2A222CCA5E08101582F47604C7BBAFFC8171FE30/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3c1b43", "Name": "CardCustom", "Transform": { "posX": -17.2533951, "posY": 1.70227706, "posZ": 15.529109, "rotX": 359.920044, "rotY": 270.0107, "rotZ": 0.0166040249, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328700, "SidewaysCard": false, "CustomDeck": { "3287": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1924742988089311079/4302F29635F849AD7D7AA42543040A4C14747D04/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "ff9534", "Name": "Deck", "Transform": { "posX": -2.72480559, "posY": 1.62076056, "posZ": 0.373300761, "rotX": 359.919739, "rotY": 269.9885, "rotZ": 0.0168529972, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 326900, 326800, 326700 ], "CustomDeck": { "3269": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354258767/7C82F1BFFBF04A9A1AEEA669F4F8FCFBE402D16E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354259005/BE1E6284BC196332031CA5D91E85CB9FC3A4DDAD/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3268": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354257918/A1246153A24474CEC5323564BE0F0ACDCCE6165C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354258149/8C0A9EADA8EDA09BD8575DF46A41BD878683601D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3267": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354256942/40AF57830F2DE43005FEB6996E004E4F83E0DFFB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861681192342095440/08F578F359BF5DDAEAEEB7D4CFD8F1F91DBAE8C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "de003c", "Name": "CardCustom", "Transform": { "posX": -10.2256174, "posY": 1.6107918, "posZ": -3.63890982, "rotX": 359.7961, "rotY": 269.988464, "rotZ": 0.0167664774, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 326900, "SidewaysCard": false, "CustomDeck": { "3269": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354258767/7C82F1BFFBF04A9A1AEEA669F4F8FCFBE402D16E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354259005/BE1E6284BC196332031CA5D91E85CB9FC3A4DDAD/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "69b031", "Name": "CardCustom", "Transform": { "posX": -10.2974787, "posY": 1.64219773, "posZ": -3.56318045, "rotX": 359.83963, "rotY": 269.994324, "rotZ": 0.0169024281, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 326800, "SidewaysCard": false, "CustomDeck": { "3268": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354257918/A1246153A24474CEC5323564BE0F0ACDCCE6165C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354258149/8C0A9EADA8EDA09BD8575DF46A41BD878683601D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8d5a4f", "Name": "CardCustom", "Transform": { "posX": -10.1902838, "posY": 1.67608583, "posZ": -3.41436148, "rotX": 359.8467, "rotY": 270.011536, "rotZ": 0.0163650978, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 326700, "SidewaysCard": false, "CustomDeck": { "3267": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354256942/40AF57830F2DE43005FEB6996E004E4F83E0DFFB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1861681192342095440/08F578F359BF5DDAEAEEB7D4CFD8F1F91DBAE8C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ], "AttachedDecals": [ { "Transform": { "posX": -0.0021877822, "posY": -0.08963572, "posZ": -0.00288731651, "rotX": 270.0, "rotY": 359.869568, "rotZ": 0.0, "scaleX": 2.00000215, "scaleY": 2.00000238, "scaleZ": 2.00000262 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }, { "GUID": "1da86b", "Name": "Custom_Model_Bag", "Transform": { "posX": 8.891501, "posY": 1.46623719, "posZ": -9.768702, "rotX": 359.920135, "rotY": 269.9999, "rotZ": 0.0168752167, "scaleX": 1.29821277, "scaleY": 0.2702163, "scaleZ": 1.42157257 }, "Nickname": "Balor Rising", "Description": "Celtic Rising - Scenario 5", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754685726010478859/A9A895E096C8C2763C553084C46888EAC1653C21/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CustomShader": { "SpecularColor": { "r": 1.0, "g": 1.0, "b": 1.0 }, "SpecularIntensity": 0.0, "SpecularSharpness": 2.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"01ac97\":{\"lock\":false,\"pos\":{\"x\":-33.2198,\"y\":1.6289,\"z\":3.983},\"rot\":{\"x\":359.9316,\"y\":314.98,\"z\":359.9554}},\"0681be\":{\"lock\":false,\"pos\":{\"x\":-17.1198,\"y\":1.6327,\"z\":-0.0284},\"rot\":{\"x\":359.9202,\"y\":269.9974,\"z\":179.293}},\"12d4f6\":{\"lock\":false,\"pos\":{\"x\":-40.3759,\"y\":1.6389,\"z\":3.906},\"rot\":{\"x\":359.9554,\"y\":225.0187,\"z\":0.0684}},\"1fc0ee\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7107,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0155,\"z\":0.0168}},\"215306\":{\"lock\":false,\"pos\":{\"x\":-20.3692,\"y\":1.6087,\"z\":-3.9232},\"rot\":{\"x\":0.0446,\"y\":45.0101,\"z\":359.9316}},\"22a5a0\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0012,\"z\":0.0168}},\"2c4bcf\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6327,\"z\":-0.03},\"rot\":{\"x\":0.0799,\"y\":89.9999,\"z\":359.9832}},\"3b8f12\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6212,\"z\":7.5681},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":180.0168}},\"3c4c8a\":{\"lock\":false,\"pos\":{\"x\":-40.3223,\"y\":1.6365,\"z\":-4.1017},\"rot\":{\"x\":359.9455,\"y\":330.0156,\"z\":359.9392}},\"438a16\":{\"lock\":false,\"pos\":{\"x\":-17.1208,\"y\":1.6065,\"z\":3.8604},\"rot\":{\"x\":359.9833,\"y\":0.0799,\"z\":359.92}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-17.1173,\"y\":1.6087,\"z\":11.4578},\"rot\":{\"x\":359.9832,\"y\":0.0435,\"z\":359.92}},\"5b7cc1\":{\"lock\":false,\"pos\":{\"x\":-15.2795,\"y\":1.6296,\"z\":-2.1778},\"rot\":{\"x\":359.9201,\"y\":270.0304,\"z\":0.7414}},\"768812\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6258,\"z\":7.5701},\"rot\":{\"x\":359.9201,\"y\":270.0094,\"z\":0.0168}},\"784c99\":{\"lock\":false,\"pos\":{\"x\":-40.2086,\"y\":1.7785,\"z\":15.208},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"8497ad\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9999,\"z\":0.0687}},\"856979\":{\"lock\":false,\"pos\":{\"x\":-17.1202,\"y\":1.6234,\"z\":15.1865},\"rot\":{\"x\":359.9201,\"y\":270.0048,\"z\":180.0168}},\"8681ca\":{\"lock\":false,\"pos\":{\"x\":-27.4055,\"y\":1.6185,\"z\":-3.917},\"rot\":{\"x\":0.0684,\"y\":134.9915,\"z\":0.0446}},\"93df12\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6213,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0086,\"z\":0.0168}},\"94faff\":{\"lock\":false,\"pos\":{\"x\":-9.8708,\"y\":1.6464,\"z\":4.6439},\"rot\":{\"x\":359.9201,\"y\":269.9902,\"z\":0.0168}},\"9baf4e\":{\"lock\":false,\"pos\":{\"x\":-20.3567,\"y\":1.6109,\"z\":3.658},\"rot\":{\"x\":359.9316,\"y\":314.9879,\"z\":359.9554}},\"b0ad18\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0097,\"z\":0.0168}},\"cc88ec\":{\"lock\":false,\"pos\":{\"x\":-9.8436,\"y\":1.647,\"z\":6.9763},\"rot\":{\"x\":359.9201,\"y\":269.9954,\"z\":0.0168}},\"dbdb22\":{\"lock\":false,\"pos\":{\"x\":-33.2632,\"y\":1.6267,\"z\":-4.0197},\"rot\":{\"x\":0.0446,\"y\":45.0199,\"z\":359.9316}},\"df2baa\":{\"lock\":false,\"pos\":{\"x\":-40.1255,\"y\":1.7772,\"z\":11.2322},\"rot\":{\"x\":359.9201,\"y\":269.9892,\"z\":180.0168}},\"e3a4be\":{\"lock\":false,\"pos\":{\"x\":-9.8238,\"y\":1.6477,\"z\":9.2789},\"rot\":{\"x\":359.9201,\"y\":269.9748,\"z\":0.0169}},\"e8ad50\":{\"lock\":false,\"pos\":{\"x\":-27.273,\"y\":1.6206,\"z\":3.7968},\"rot\":{\"x\":0.0445,\"y\":44.9531,\"z\":359.9316}},\"f35597\":{\"lock\":false,\"pos\":{\"x\":-9.868,\"y\":1.6457,\"z\":2.3134},\"rot\":{\"x\":359.9201,\"y\":269.9792,\"z\":0.0169}},\"f6c3ea\":{\"lock\":false,\"pos\":{\"x\":-2.6882,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9921,\"z\":0.0168}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "01ac97", "Name": "Custom_Tile", "Transform": { "posX": -33.2198, "posY": 1.62894857, "posZ": 3.983, "rotX": 359.93158, "rotY": 314.98, "rotZ": 359.955444, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "0681be", "Name": "CardCustom", "Transform": { "posX": -17.119833, "posY": 1.61892426, "posZ": -0.0287079457, "rotX": 359.9201, "rotY": 269.995483, "rotZ": 180.016632, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Torq Gates", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315200, "SidewaysCard": false, "CustomDeck": { "3152": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762860066/3B19DEFFA2EA4251B57B8AC3C82D47AE41313575/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831332033/3A051FD5B1416863E82C0BF616195C038ABAD1C9/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "12d4f6", "Name": "Custom_Tile", "Transform": { "posX": -40.3759, "posY": 1.63890457, "posZ": 3.90600038, "rotX": 359.955383, "rotY": 225.018723, "rotZ": 0.06836635, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "1fc0ee", "Name": "Deck", "Transform": { "posX": -3.845445, "posY": 1.71192467, "posZ": 10.3834572, "rotX": 359.919739, "rotY": 269.9784, "rotZ": 0.01687569, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 302700, 302600, 291100, 291000, 290900, 317900, 326000, 325900, 317600, 317500, 317400, 317300, 329300, 329200, 317000, 442100, 442000, 316700, 316600, 316500, 316400 ], "CustomDeck": { "3027": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762728903/40C846C1BBFDDFE88BDDCF0CE14E840457444090/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962579135/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3026": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762728333/2F704B12418CE957E791EEF80E668CC56B1D4CBF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962578575/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2911": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678997/2FFD464BE85B3C06E492DE79841B2004920CB315/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678551/9BF0D765FC571B006FF6BD776A4EC1DE2BEE0FD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2909": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678147/E425D57C815C44B898C503C81B0E55A27175245B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3179": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762887055/D9556C638F1E297ED9281DA9AE7070E6FC066361/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833219305/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3260": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858307836340171742/868A0C5899B9CC7DE79FB60AE4C016A8BFD70170/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833217904/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3259": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858307836340170149/759847A57F4B34E545FC34B157C55620904ED949/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833217904/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3176": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762884378/39EA83F28C96EBA4A05EEFC68CD4967E8B2ADF7E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833216865/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3175": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762883610/E391C7B5FA34FB076585DBD77DF831542B18BB71/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833216865/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3174": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762882139/BBB6733FC1E680FC5D71C8AB1DD1A2AA0DAFFA59/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833215639/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3173": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762881361/3C1D68C8FD6A0A975110E0B1590E9CCD7EED8F4F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833215639/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3293": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184853116626936/FF19EDF42C6B68600511282CF3CD8520BFCBB8AE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1799726733651939903/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3292": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184853116626112/657F381663722BB985FDEEE08FE43CA2584D2D8E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1799726733651939903/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3170": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762877675/607814D5559A0432E7C278F84C2BE86B123EC964/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833211694/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4421": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751686953/3419001BC3E614A438773388294F642EDE0E9F3E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833210503/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4420": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751685974/0A81F86E40F464BABD520B22AA630F614F6BABE8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833210503/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3167": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762875254/049D551D6037D8E1583602B35AD16EDDD1F279DC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833209383/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3166": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762874539/96176312A874578E81EA795CDD07A64C28E60B65/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833209383/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3165": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762873626/EB1F0339C4CAA903D11AA97D6BC3C2A9EDE095BA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833208427/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3164": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762872849/F1C2668BA18207BD4E92FA9833568AD69B8C5073/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833207322/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "5c839e", "Name": "CardCustom", "Transform": { "posX": -11.719533, "posY": 1.61328578, "posZ": 6.42212248, "rotX": 359.919373, "rotY": 270.0061, "rotZ": 0.0165083632, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 302700, "SidewaysCard": false, "CustomDeck": { "3027": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762728903/40C846C1BBFDDFE88BDDCF0CE14E840457444090/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962579135/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d42f7b", "Name": "CardCustom", "Transform": { "posX": -11.8741617, "posY": 1.64318025, "posZ": 6.462775, "rotX": 359.9157, "rotY": 269.989258, "rotZ": 0.0158844683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 302600, "SidewaysCard": false, "CustomDeck": { "3026": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762728333/2F704B12418CE957E791EEF80E668CC56B1D4CBF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962578575/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0d2fa", "Name": "CardCustom", "Transform": { "posX": -17.1199932, "posY": 1.62006712, "posZ": 3.85999751, "rotX": 359.9201, "rotY": 269.9976, "rotZ": 0.0168430153, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291100, "SidewaysCard": false, "CustomDeck": { "2911": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678997/2FFD464BE85B3C06E492DE79841B2004920CB315/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e954bb", "Name": "CardCustom", "Transform": { "posX": -16.8623829, "posY": 1.65489781, "posZ": 3.8260293, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168433338, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291000, "SidewaysCard": false, "CustomDeck": { "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678551/9BF0D765FC571B006FF6BD776A4EC1DE2BEE0FD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9340b8", "Name": "CardCustom", "Transform": { "posX": -17.0704746, "posY": 1.68896, "posZ": 3.87464452, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168435778, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290900, "SidewaysCard": false, "CustomDeck": { "2909": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678147/E425D57C815C44B898C503C81B0E55A27175245B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2dfd3f", "Name": "CardCustom", "Transform": { "posX": -11.3108616, "posY": 1.61420238, "posZ": -4.36256266, "rotX": 359.761871, "rotY": 270.006531, "rotZ": 0.0400779769, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 317900, "SidewaysCard": false, "CustomDeck": { "3179": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762887055/D9556C638F1E297ED9281DA9AE7070E6FC066361/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833219305/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8769a6", "Name": "CardCustom", "Transform": { "posX": -11.5862017, "posY": 1.613343, "posZ": -2.46592665, "rotX": 359.918884, "rotY": 269.995941, "rotZ": 359.866821, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 326000, "SidewaysCard": false, "CustomDeck": { "3260": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858307836340171742/868A0C5899B9CC7DE79FB60AE4C016A8BFD70170/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833217904/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0b8139", "Name": "CardCustom", "Transform": { "posX": -11.399704, "posY": 1.64222133, "posZ": -2.16656637, "rotX": 359.919128, "rotY": 269.9875, "rotZ": 359.899078, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325900, "SidewaysCard": false, "CustomDeck": { "3259": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858307836340170149/759847A57F4B34E545FC34B157C55620904ED949/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833217904/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c35c26", "Name": "CardCustom", "Transform": { "posX": -11.6581259, "posY": 1.61229694, "posZ": 3.33155656, "rotX": 359.9201, "rotY": 270.001373, "rotZ": 0.0169177968, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 317600, "SidewaysCard": false, "CustomDeck": { "3176": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762884378/39EA83F28C96EBA4A05EEFC68CD4967E8B2ADF7E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833216865/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "16482f", "Name": "CardCustom", "Transform": { "posX": -11.5656939, "posY": 1.64195442, "posZ": 3.697083, "rotX": 359.919373, "rotY": 270.0017, "rotZ": 0.01477487, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 317500, "SidewaysCard": false, "CustomDeck": { "3175": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762883610/E391C7B5FA34FB076585DBD77DF831542B18BB71/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833216865/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "56e490", "Name": "CardCustom", "Transform": { "posX": -11.3749266, "posY": 1.675688, "posZ": 3.88494778, "rotX": 359.917, "rotY": 269.9958, "rotZ": 0.0195811223, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 317400, "SidewaysCard": false, "CustomDeck": { "3174": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762882139/BBB6733FC1E680FC5D71C8AB1DD1A2AA0DAFFA59/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833215639/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c8a42f", "Name": "CardCustom", "Transform": { "posX": -11.7561846, "posY": 1.68547571, "posZ": 2.86013412, "rotX": 359.919434, "rotY": 269.9989, "rotZ": 0.0213699974, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 317300, "SidewaysCard": false, "CustomDeck": { "3173": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762881361/3C1D68C8FD6A0A975110E0B1590E9CCD7EED8F4F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833215639/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "42d9b0", "Name": "CardCustom", "Transform": { "posX": -10.5952263, "posY": 1.76624167, "posZ": -11.9370108, "rotX": 359.920319, "rotY": 270.0015, "rotZ": 0.01664459, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 329300, "SidewaysCard": false, "CustomDeck": { "3293": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184853116626936/FF19EDF42C6B68600511282CF3CD8520BFCBB8AE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1799726733651939903/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ddb8ea", "Name": "CardCustom", "Transform": { "posX": -11.5119629, "posY": 1.77708077, "posZ": -12.196907, "rotX": 359.91452, "rotY": 270.0283, "rotZ": 0.007442556, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 329200, "SidewaysCard": false, "CustomDeck": { "3292": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184853116626112/657F381663722BB985FDEEE08FE43CA2584D2D8E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1799726733651939903/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2c979d", "Name": "CardCustom", "Transform": { "posX": -10.7933788, "posY": 1.78558087, "posZ": -12.685585, "rotX": 359.910645, "rotY": 270.027649, "rotZ": 0.0108335055, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 317000, "SidewaysCard": false, "CustomDeck": { "3170": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762877675/607814D5559A0432E7C278F84C2BE86B123EC964/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833211694/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "055d52", "Name": "CardCustom", "Transform": { "posX": -9.663008, "posY": 1.79355919, "posZ": -12.7314453, "rotX": 359.914551, "rotY": 269.99762, "rotZ": 0.0136126829, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442100, "SidewaysCard": false, "CustomDeck": { "4421": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751686953/3419001BC3E614A438773388294F642EDE0E9F3E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833210503/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3503a6", "Name": "CardCustom", "Transform": { "posX": -9.915179, "posY": 1.80369115, "posZ": -12.5095558, "rotX": 359.919342, "rotY": 270.0022, "rotZ": 0.0235159639, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442000, "SidewaysCard": false, "CustomDeck": { "4420": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751685974/0A81F86E40F464BABD520B22AA630F614F6BABE8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833210503/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b78add", "Name": "CardCustom", "Transform": { "posX": -13.6823692, "posY": 1.6094811, "posZ": -15.8497505, "rotX": 359.9201, "rotY": 270.002075, "rotZ": 0.0168366712, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 316700, "SidewaysCard": false, "CustomDeck": { "3167": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762875254/049D551D6037D8E1583602B35AD16EDDD1F279DC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833209383/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "07ea59", "Name": "CardCustom", "Transform": { "posX": -13.4317532, "posY": 1.66765666, "posZ": -16.1732616, "rotX": 359.920074, "rotY": 270.001862, "rotZ": 0.01672383, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 316600, "SidewaysCard": false, "CustomDeck": { "3166": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762874539/96176312A874578E81EA795CDD07A64C28E60B65/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833209383/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "235681", "Name": "CardCustom", "Transform": { "posX": -13.64267, "posY": 1.67299747, "posZ": -15.986167, "rotX": 359.919739, "rotY": 270.0031, "rotZ": 0.017086409, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 316500, "SidewaysCard": false, "CustomDeck": { "3165": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762873626/EB1F0339C4CAA903D11AA97D6BC3C2A9EDE095BA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833208427/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e1a768", "Name": "CardCustom", "Transform": { "posX": -9.944089, "posY": 1.842034, "posZ": -13.2807283, "rotX": 359.91684, "rotY": 270.012177, "rotZ": 0.0006652571, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 316400, "SidewaysCard": false, "CustomDeck": { "3164": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762872849/F1C2668BA18207BD4E92FA9833568AD69B8C5073/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833207322/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "215306", "Name": "Custom_Tile", "Transform": { "posX": -20.3691978, "posY": 1.60870588, "posZ": -3.9232, "rotX": 0.0446010046, "rotY": 45.0100746, "rotZ": 359.931641, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "22a5a0", "Name": "CardCustom", "Transform": { "posX": -3.95600033, "posY": 1.59753942, "posZ": -10.4412012, "rotX": 359.919739, "rotY": 270.00116, "rotZ": 0.0168355238, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315400, "SidewaysCard": false, "CustomDeck": { "3154": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762862135/2EEE44ABE26519733C5AAAD43B615714DFCC8C8F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762862399/7FF06014F130A429827F3717B8D92878833D6FD9/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2c4bcf", "Name": "Custom_Tile", "Transform": { "posX": -36.7732, "posY": 1.63272417, "posZ": -0.0300003216, "rotX": 0.07989485, "rotY": 89.99989, "rotZ": 359.983154, "scaleX": 1.99723673, "scaleY": 1.0, "scaleZ": 1.99723673 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "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": 1.59778941, "scaleY": 1.0, "scaleZ": 1.59778941 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "6f30f0", "Name": "Custom_Tile", "Transform": { "posX": -36.7731972, "posY": 1.63272429, "posZ": -0.0299985949, "rotX": 359.9201, "rotY": 270.008667, "rotZ": 0.0168339666, "scaleX": 1.99723673, "scaleY": 1.0, "scaleZ": 1.99723673 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "3b8f12", "Name": "CardCustom", "Transform": { "posX": -17.12, "posY": 1.62115693, "posZ": 7.56810045, "rotX": 359.9201, "rotY": 269.999573, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rocky Path Down", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315100, "SidewaysCard": false, "CustomDeck": { "3151": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762858725/8A0AA7DE374CD78F9EA974ABCD1639763C387EAB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831331321/124B5FE4EFFF824663EED9B2F35A27F8CF404AD0/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3c4c8a", "Name": "Custom_Tile", "Transform": { "posX": -40.3223, "posY": 1.63647664, "posZ": -4.1017, "rotX": 359.9455, "rotY": 330.015625, "rotZ": 359.939178, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "438a16", "Name": "Custom_Tile", "Transform": { "posX": -17.1208, "posY": 1.60646367, "posZ": 3.86040044, "rotX": 359.983276, "rotY": 0.07995, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/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": "", "States": { "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "247063", "Name": "Custom_Tile", "Transform": { "posX": -26.9895, "posY": 1.61910844, "posZ": 0.0622174032, "rotX": 359.9201, "rotY": 270.012573, "rotZ": 0.0168612041, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -17.1173, "posY": 1.60869157, "posZ": 11.4578018, "rotX": 359.983215, "rotY": 0.0435441844, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/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": "", "States": { "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "7234af", "Name": "Custom_Tile", "Transform": { "posX": -20.421299, "posY": 1.60994554, "posZ": 0.0485093631, "rotX": 359.9201, "rotY": 270.009949, "rotZ": 0.0168572143, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "5b7cc1", "Name": "CardCustom", "Transform": { "posX": -15.2795067, "posY": 1.6295588, "posZ": -2.17784119, "rotX": 359.920074, "rotY": 270.031281, "rotZ": 0.741703153, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315300, "SidewaysCard": false, "CustomDeck": { "3153": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762860955/6BB5F1E59701817B26950908DB5D3EC718BDE4ED/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833153816/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "768812", "Name": "Custom_Tile", "Transform": { "posX": -30.2242, "posY": 1.62582564, "posZ": 7.5701, "rotX": 359.9201, "rotY": 270.0094, "rotZ": 0.0168321636, "scaleX": 1.99723673, "scaleY": 1.0, "scaleZ": 1.99723673 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.99723673, "scaleY": 1.0, "scaleZ": 1.99723673 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 1.59778941, "scaleY": 1.0, "scaleZ": 1.59778941 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "784c99", "Name": "Deck", "Transform": { "posX": -40.2086029, "posY": 1.7784605, "posZ": 15.208003, "rotX": 359.9201, "rotY": 270.0, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Balors Tactical Deck", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 321000, 321100, 325700, 325600, 325500, 321500, 325400, 325300, 325200, 325100, 325000, 324900, 324800, 324700, 324600, 324500, 324400, 324300, 324200, 441800, 441900, 328000, 328300, 323700 ], "CustomDeck": { "3210": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762973914/5E241E8615F92C8D469980EBD2DAAC79698B200A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833276957/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3211": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762976587/CDCBD7788BC3CC0C39E74C4688E2F80E6274B8F2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833277737/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3257": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762977973/9D687FD7643ABCC7981C69EC912833B034E27BA1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833278349/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3256": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762978624/BF44B322F6068D896189BBF39D4A1A7B4D708487/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833278349/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3255": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762980894/2B7D401E93033DD675F37E7E30013D90E5B1C563/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833279036/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3215": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762982506/426D4265EEFBEF807E36E0AE06126AB2F1CE09A7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833281624/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3254": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762983790/B0DC493F54E44050FD186E67EC15C0D21AFBFE06/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833282330/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3253": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762984893/444D3FC654935842F4D9FE7184C16771D6722D38/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833283304/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3252": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762985683/9F9762C755FFC15780C225C18A62DB8EA71BCF8D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833283976/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3251": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762987502/F281ED61856B237DE8EB3F0A9D9475F8C7F750BA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833286760/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3250": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762988463/6D1DFA2EFF6C36D9CAEAAF77588F06424F4526C9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833287455/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3249": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762989521/229BBB5701AA285D887D85436A8B28D045C5593D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833288610/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3248": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762990669/A7C1BB647AD188F1667A5933F84C6F9CE7E032B3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833289255/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3247": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762997148/95B00C1A489800C276749E7357579BDEDBE1D559/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833293065/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3246": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762997768/BA0E8E525782DFB0E796C985F36419B92B6F03AA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833293065/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3245": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762999537/49489C84EC33531B4EEA7D680E97E516E51A20CF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833293849/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3244": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763000159/B5457A88BCBBE06EFD7BA275240CF333BFC4309E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833293849/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3243": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763000879/0E29892CD83E027D5CE2BC1E208A9FC145B13F5B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833293849/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3242": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763002473/61C86D7F08C4DB8F7207653E4CD8DBD3BE283659/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833294975/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4418": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763003044/25BB051325711E4E92090A07F9C265B17F7BABFC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833294975/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4419": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763004405/25C0F50B92E2CE0587AEE2E2EE03B69CF17FE9F5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833295988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3280": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858307836340174749/7279A17015FE8D84FE8FD4B2B23E1BDD4E882989/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833300868/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3283": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858307836340177091/4A08008098F54E9F5157907E4ABBF8140E2CD5C1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833301609/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3237": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763007154/A3A4E3C3C5DBC5EF2A8BC80643B50F741C77BB61/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833286760/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "8dda39", "Name": "CardCustom", "Transform": { "posX": -36.773243, "posY": 1.65079486, "posZ": 15.1900053, "rotX": 359.920166, "rotY": 270.0, "rotZ": 0.0163548868, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321000, "SidewaysCard": false, "CustomDeck": { "3210": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762973914/5E241E8615F92C8D469980EBD2DAAC79698B200A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833276957/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "48b4ef", "Name": "CardCustom", "Transform": { "posX": -36.77323, "posY": 1.68538094, "posZ": 15.1900024, "rotX": 359.93512, "rotY": 270.0, "rotZ": 0.0120635619, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321100, "SidewaysCard": false, "CustomDeck": { "3211": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762976587/CDCBD7788BC3CC0C39E74C4688E2F80E6274B8F2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833277737/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d00d25", "Name": "CardCustom", "Transform": { "posX": -36.68826, "posY": 1.75226712, "posZ": 15.1675043, "rotX": 359.982269, "rotY": 270.0, "rotZ": 0.00373922335, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325700, "SidewaysCard": false, "CustomDeck": { "3257": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762977973/9D687FD7643ABCC7981C69EC912833B034E27BA1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833278349/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "74f905", "Name": "CardCustom", "Transform": { "posX": -36.5141869, "posY": 1.7294544, "posZ": 15.3701658, "rotX": 359.983246, "rotY": 270.0, "rotZ": 0.00353106274, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325600, "SidewaysCard": false, "CustomDeck": { "3256": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762978624/BF44B322F6068D896189BBF39D4A1A7B4D708487/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833278349/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "509bbd", "Name": "CardCustom", "Transform": { "posX": -36.7398376, "posY": 1.76449609, "posZ": 15.4381237, "rotX": 359.982117, "rotY": 270.0, "rotZ": 0.00377166388, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325500, "SidewaysCard": false, "CustomDeck": { "3255": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762980894/2B7D401E93033DD675F37E7E30013D90E5B1C563/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833279036/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "992c42", "Name": "CardCustom", "Transform": { "posX": -36.77323, "posY": 1.745604, "posZ": 15.19, "rotX": 359.9634, "rotY": 270.0, "rotZ": 0.0140542919, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321500, "SidewaysCard": false, "CustomDeck": { "3215": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762982506/426D4265EEFBEF807E36E0AE06126AB2F1CE09A7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833281624/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9a2000", "Name": "CardCustom", "Transform": { "posX": -36.1669464, "posY": 1.75797236, "posZ": 15.4344845, "rotX": 359.979156, "rotY": 269.999969, "rotZ": 0.00439401343, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325400, "SidewaysCard": false, "CustomDeck": { "3254": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762983790/B0DC493F54E44050FD186E67EC15C0D21AFBFE06/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833282330/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8bc0f3", "Name": "CardCustom", "Transform": { "posX": -36.77324, "posY": 1.76675379, "posZ": 15.1900024, "rotX": 359.98526, "rotY": 269.999969, "rotZ": 0.00310733914, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325300, "SidewaysCard": false, "CustomDeck": { "3253": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762984893/444D3FC654935842F4D9FE7184C16771D6722D38/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833283304/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5bb045", "Name": "CardCustom", "Transform": { "posX": -36.53741, "posY": 1.77765393, "posZ": 15.115449, "rotX": 359.982666, "rotY": 269.999969, "rotZ": 0.003651556, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325200, "SidewaysCard": false, "CustomDeck": { "3252": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762985683/9F9762C755FFC15780C225C18A62DB8EA71BCF8D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833283976/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "479ea7", "Name": "CardCustom", "Transform": { "posX": -36.7156563, "posY": 1.80238569, "posZ": 15.2236843, "rotX": 359.983276, "rotY": 269.999969, "rotZ": 0.00352658471, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325100, "SidewaysCard": false, "CustomDeck": { "3251": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762987502/F281ED61856B237DE8EB3F0A9D9475F8C7F750BA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833286760/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c6403b", "Name": "CardCustom", "Transform": { "posX": -36.72504, "posY": 1.80605042, "posZ": 15.4636078, "rotX": 359.97876, "rotY": 269.999969, "rotZ": 0.004478529, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325000, "SidewaysCard": false, "CustomDeck": { "3250": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762988463/6D1DFA2EFF6C36D9CAEAAF77588F06424F4526C9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833287455/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "727c67", "Name": "CardCustom", "Transform": { "posX": -36.8817368, "posY": 1.80693293, "posZ": 15.3467722, "rotX": 359.9825, "rotY": 269.999969, "rotZ": 0.003685922, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324900, "SidewaysCard": false, "CustomDeck": { "3249": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762989521/229BBB5701AA285D887D85436A8B28D045C5593D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833288610/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c26554", "Name": "CardCustom", "Transform": { "posX": -36.9825058, "posY": 1.81655645, "posZ": 15.0992975, "rotX": 359.982025, "rotY": 269.999969, "rotZ": 0.00378807774, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324800, "SidewaysCard": false, "CustomDeck": { "3248": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762990669/A7C1BB647AD188F1667A5933F84C6F9CE7E032B3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833289255/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0ab9c", "Name": "CardCustom", "Transform": { "posX": -36.45246, "posY": 1.82564187, "posZ": 15.0806694, "rotX": 359.9829, "rotY": 270.0, "rotZ": 0.00360380113, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324700, "SidewaysCard": false, "CustomDeck": { "3247": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762997148/95B00C1A489800C276749E7357579BDEDBE1D559/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833293065/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "245893", "Name": "CardCustom", "Transform": { "posX": -36.9310646, "posY": 1.835818, "posZ": 15.1911, "rotX": 359.9829, "rotY": 269.999969, "rotZ": 0.00360291451, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324600, "SidewaysCard": false, "CustomDeck": { "3246": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762997768/BA0E8E525782DFB0E796C985F36419B92B6F03AA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833293065/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "176c55", "Name": "CardCustom", "Transform": { "posX": -37.0332069, "posY": 1.84554029, "posZ": 15.2465792, "rotX": 359.982025, "rotY": 269.999969, "rotZ": 0.00378792943, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324500, "SidewaysCard": false, "CustomDeck": { "3245": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762999537/49489C84EC33531B4EEA7D680E97E516E51A20CF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833293849/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "84d7fd", "Name": "CardCustom", "Transform": { "posX": -36.98722, "posY": 1.8550843, "posZ": 14.9159212, "rotX": 359.982422, "rotY": 269.999969, "rotZ": 0.00370740821, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324400, "SidewaysCard": false, "CustomDeck": { "3244": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763000159/B5457A88BCBBE06EFD7BA275240CF333BFC4309E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833293849/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ed23bc", "Name": "CardCustom", "Transform": { "posX": -36.7483521, "posY": 1.86463809, "posZ": 15.2140331, "rotX": 359.983276, "rotY": 269.999969, "rotZ": 0.00352612184, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324300, "SidewaysCard": false, "CustomDeck": { "3243": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763000879/0E29892CD83E027D5CE2BC1E208A9FC145B13F5B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833293849/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f47589", "Name": "CardCustom", "Transform": { "posX": -36.5979271, "posY": 1.87431931, "posZ": 15.322257, "rotX": 359.982056, "rotY": 269.999969, "rotZ": 0.00377964345, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324200, "SidewaysCard": false, "CustomDeck": { "3242": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763002473/61C86D7F08C4DB8F7207653E4CD8DBD3BE283659/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833294975/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "61519f", "Name": "CardCustom", "Transform": { "posX": -36.8701553, "posY": 1.88412273, "posZ": 15.3258705, "rotX": 359.982025, "rotY": 269.999969, "rotZ": 0.0037876768, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441800, "SidewaysCard": false, "CustomDeck": { "3241": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763003044/25BB051325711E4E92090A07F9C265B17F7BABFC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833294975/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1b8a0d", "Name": "CardCustom", "Transform": { "posX": -36.571888, "posY": 1.8934654, "posZ": 15.4431372, "rotX": 359.982025, "rotY": 269.999969, "rotZ": 0.00378760183, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441900, "SidewaysCard": false, "CustomDeck": { "3240": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763004405/25C0F50B92E2CE0587AEE2E2EE03B69CF17FE9F5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833295988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b5d5b5", "Name": "CardCustom", "Transform": { "posX": -36.79258, "posY": 1.90269732, "posZ": 15.3420143, "rotX": 359.9201, "rotY": 269.999878, "rotZ": 0.01683968, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328000, "SidewaysCard": false, "CustomDeck": { "3280": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858307836340174749/7279A17015FE8D84FE8FD4B2B23E1BDD4E882989/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833300868/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ffe655", "Name": "CardCustom", "Transform": { "posX": -36.7586365, "posY": 1.91232324, "posZ": 15.4807968, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.01683986, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328300, "SidewaysCard": false, "CustomDeck": { "3283": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858307836340177091/4A08008098F54E9F5157907E4ABBF8140E2CD5C1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833301609/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d08819", "Name": "CardCustom", "Transform": { "posX": -36.4916, "posY": 1.92170942, "posZ": 15.2710094, "rotX": 359.9201, "rotY": 269.999878, "rotZ": 0.0168386959, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323700, "SidewaysCard": false, "CustomDeck": { "3237": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763007154/A3A4E3C3C5DBC5EF2A8BC80643B50F741C77BB61/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833286760/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "8497ad", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69640076, "posY": 1.55831814, "posZ": 14.2788019, "rotX": 359.955139, "rotY": 224.9999, "rotZ": 0.06867157, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 0.903345346, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/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": "239cad", "Name": "Deck", "Transform": { "posX": 6.137885, "posY": 1.79364491, "posZ": -1.30120456, "rotX": 359.920135, "rotY": 269.999939, "rotZ": 0.0168731436, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Onslaught Cards", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 443100, 319800, 319700, 319600 ], "CustomDeck": { "4431": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762893210/7E7C5EE386C33C22AEC070D04CA61590C1E245F9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833225538/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3198": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762892415/367BDAC31571EFC5E582BB790AF9BBAB7D5671E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833225538/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3197": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762891493/3A8404B9B1E0309DA0ECF08D1F94638EDE9B946A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833224821/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3196": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762890981/72D74118ED290133F43C5A3D186FC93EC2F7569C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833224821/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "6d0d8c", "Name": "CardCustom", "Transform": { "posX": 5.943236, "posY": 1.59953773, "posZ": 24.8087978, "rotX": 359.936279, "rotY": 270.002258, "rotZ": 178.397141, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 443100, "SidewaysCard": false, "CustomDeck": { "4431": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762893210/7E7C5EE386C33C22AEC070D04CA61590C1E245F9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833225538/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "86b017", "Name": "CardCustom", "Transform": { "posX": -19.4793568, "posY": 1.6496222, "posZ": -7.96098566, "rotX": 359.92392, "rotY": 269.998657, "rotZ": 0.0136220008, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 319800, "SidewaysCard": false, "CustomDeck": { "3198": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762892415/367BDAC31571EFC5E582BB790AF9BBAB7D5671E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833225538/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "00a9c5", "Name": "CardCustom", "Transform": { "posX": -19.9932289, "posY": 1.68414366, "posZ": -8.025999, "rotX": 359.917847, "rotY": 270.0055, "rotZ": 0.01861487, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 319700, "SidewaysCard": false, "CustomDeck": { "3197": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762891493/3A8404B9B1E0309DA0ECF08D1F94638EDE9B946A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833224821/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "82ce8f", "Name": "CardCustom", "Transform": { "posX": 5.980314, "posY": 1.56742477, "posZ": 25.2091846, "rotX": 359.93634, "rotY": 270.003052, "rotZ": 0.0133430008, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 319600, "SidewaysCard": false, "CustomDeck": { "3196": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762890981/72D74118ED290133F43C5A3D186FC93EC2F7569C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833224821/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "95299e", "Name": "Deck", "Transform": { "posX": 10.2404184, "posY": 1.80081868, "posZ": 0.350669473, "rotX": 359.920135, "rotY": 269.9993, "rotZ": 180.016861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locations", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 319900, 320000, 442700, 442800, 442900, 443000 ], "CustomDeck": { "3199": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762897791/75B3609A27A6666E444AD4EADD0D954A7856A6E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762898037/3C221FBC2395E6AB845373D2A1349C6A9DC00971/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3200": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762899117/B9808A5928A5A2E42D19C1243DE35B7E0EE0BDD0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831333705/7E9CB28EA1F4AA37D2A8EEFA5090601EEFADF303/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4427": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762901168/64CB2A0C3669C0DA44BF351DAD4F3E2452E7A0B9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831334470/0BA2F8286583571B3256429EE8A0683E780C2CC4/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4428": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762933327/4393AA643E00DD93483A87081BC7F53ED3F59FFC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831335293/0A3EFFB70797F3B39DC86847FF7C64CF4C58B04D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4429": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762934400/05205CF7884F5D23688E2215FB62B97D265EC054/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831339028/DD3D900D5676D5452F5D34073F3900781EFBEDE8/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4430": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762935477/77AE0C73DE9539F490B48FBBA881E4463C2958BF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831340640/6762603AEDB57231EDEA93806B7D0747A23E3B15/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4ebc0a", "Name": "CardCustom", "Transform": { "posX": -30.2242413, "posY": 1.76628423, "posZ": 11.4600019, "rotX": 0.08225555, "rotY": 269.999146, "rotZ": 179.981857, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Central Square", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 319900, "SidewaysCard": false, "CustomDeck": { "3199": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762897791/75B3609A27A6666E444AD4EADD0D954A7856A6E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762898037/3C221FBC2395E6AB845373D2A1349C6A9DC00971/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b3e2b7", "Name": "CardCustom", "Transform": { "posX": -30.22423, "posY": 1.72093952, "posZ": 11.4600077, "rotX": 359.92038, "rotY": 270.009918, "rotZ": 180.017151, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "East Street", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 320000, "SidewaysCard": false, "CustomDeck": { "3200": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762899117/B9808A5928A5A2E42D19C1243DE35B7E0EE0BDD0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831333705/7E9CB28EA1F4AA37D2A8EEFA5090601EEFADF303/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2241d8", "Name": "CardCustom", "Transform": { "posX": -30.56022, "posY": 1.719485, "posZ": 11.83231, "rotX": 359.9201, "rotY": 270.003, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pardli Lane", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442700, "SidewaysCard": false, "CustomDeck": { "3201": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762901168/64CB2A0C3669C0DA44BF351DAD4F3E2452E7A0B9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831334470/0BA2F8286583571B3256429EE8A0683E780C2CC4/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f95e53", "Name": "CardCustom", "Transform": { "posX": -36.7731934, "posY": 1.72243679, "posZ": 11.4600019, "rotX": 0.0744955, "rotY": 270.0034, "rotZ": 179.97966, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "West Street", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442800, "SidewaysCard": false, "CustomDeck": { "3202": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762933327/4393AA643E00DD93483A87081BC7F53ED3F59FFC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831335293/0A3EFFB70797F3B39DC86847FF7C64CF4C58B04D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ce904c", "Name": "CardCustom", "Transform": { "posX": -36.77317, "posY": 1.67686534, "posZ": 11.4600105, "rotX": 359.9199, "rotY": 269.998444, "rotZ": 180.016251, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hangman's Green", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442900, "SidewaysCard": false, "CustomDeck": { "3203": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762934400/05205CF7884F5D23688E2215FB62B97D265EC054/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831339028/DD3D900D5676D5452F5D34073F3900781EFBEDE8/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7edde3", "Name": "CardCustom", "Transform": { "posX": -36.77321, "posY": 1.64704025, "posZ": 11.4599752, "rotX": 359.947418, "rotY": 269.993073, "rotZ": 180.194717, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Financial District", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 443000, "SidewaysCard": false, "CustomDeck": { "3204": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762935477/77AE0C73DE9539F490B48FBBA881E4463C2958BF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091831340640/6762603AEDB57231EDEA93806B7D0747A23E3B15/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "fb209e", "Name": "Deck", "Transform": { "posX": 9.923878, "posY": 1.53007793, "posZ": -0.125138149, "rotX": 359.920135, "rotY": 269.9999, "rotZ": 0.01687681, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Story Cards", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 320600, 442300, 442400, 442500, 320200, 442600 ], "CustomDeck": { "3206": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833142230/197A7C13FB15D2847AC63942770691F179C74D6A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762946596/4AAEC0C290B9EE83F6B6D31CA0982CB7642A9B71/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4423": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833141257/D15BC5C32DF452DF46B5E56398277B9BA074E72E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762944355/20DFAC825E9150307DDCD783243347F71BBE2156/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4424": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833143205/D891A3BD03AC234F04359F854C18667311F6817F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762945551/2465D537DDE02F5706A688F38B821183840242EC/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4425": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833139465/C2D6269B0DB7BC7753D9DA33DC3CB63FEFEC6A4C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762942249/244EDFE7EBFE920A7EF2E626EEE6A8A831F0BD02/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3202": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762940810/C1B6C5C9D90E4D4DB7D8DA2A8090560F6CB583A0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762941118/9F5907DEB7C9E44647DC1CFBE8490F28C26611E3/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4426": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833137429/931FC9F4E2E9B49C6C80DE6E8212253633B33D97/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762939720/F44EB2493CBB4DB963A06F2772CC6204A56E0670/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "c7e1f7", "Name": "CardCustom", "Transform": { "posX": -36.7731476, "posY": 1.64970577, "posZ": 11.4599667, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.01683968, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 320600, "SidewaysCard": false, "CustomDeck": { "3206": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833142230/197A7C13FB15D2847AC63942770691F179C74D6A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762946596/4AAEC0C290B9EE83F6B6D31CA0982CB7642A9B71/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "06d0b2", "Name": "CardCustom", "Transform": { "posX": -36.8521, "posY": 1.73313046, "posZ": 11.0558624, "rotX": 359.920044, "rotY": 269.977417, "rotZ": 0.0168821421, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442300, "SidewaysCard": false, "CustomDeck": { "3204": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833141257/D15BC5C32DF452DF46B5E56398277B9BA074E72E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762944355/20DFAC825E9150307DDCD783243347F71BBE2156/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "136591", "Name": "CardCustom", "Transform": { "posX": -37.2138176, "posY": 1.71892953, "posZ": 11.2223139, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.01683934, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442400, "SidewaysCard": false, "CustomDeck": { "3205": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833143205/D891A3BD03AC234F04359F854C18667311F6817F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762945551/2465D537DDE02F5706A688F38B821183840242EC/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "129791", "Name": "CardCustom", "Transform": { "posX": -36.59269, "posY": 1.72802782, "posZ": 10.995019, "rotX": 359.920135, "rotY": 270.000977, "rotZ": 0.0167796463, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442500, "SidewaysCard": false, "CustomDeck": { "3203": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833139465/C2D6269B0DB7BC7753D9DA33DC3CB63FEFEC6A4C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762942249/244EDFE7EBFE920A7EF2E626EEE6A8A831F0BD02/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ac99b7", "Name": "CardCustom", "Transform": { "posX": -36.1952057, "posY": 1.73744428, "posZ": 11.6009636, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.0168393962, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 320200, "SidewaysCard": false, "CustomDeck": { "3202": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762940810/C1B6C5C9D90E4D4DB7D8DA2A8090560F6CB583A0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762941118/9F5907DEB7C9E44647DC1CFBE8490F28C26611E3/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5c5aae", "Name": "CardCustom", "Transform": { "posX": -36.9161263, "posY": 1.747748, "posZ": 12.1590862, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.0168393627, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442600, "SidewaysCard": false, "CustomDeck": { "3201": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833137429/931FC9F4E2E9B49C6C80DE6E8212253633B33D97/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762939720/F44EB2493CBB4DB963A06F2772CC6204A56E0670/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "8729af", "Name": "CardCustom", "Transform": { "posX": 10.0390911, "posY": 1.49351454, "posZ": -0.378816158, "rotX": 359.920135, "rotY": 269.999146, "rotZ": 0.0168751646, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Caorthannach", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 320100, "SidewaysCard": false, "CustomDeck": { "3201": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762949439/38BA9E9149B73DCA729DABA4ADB23C4812426229/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809194753611196/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "988f18", "Name": "CardCustom", "Transform": { "posX": 10.139082, "posY": 1.7647543, "posZ": 0.9111963, "rotX": 359.920135, "rotY": 269.999268, "rotZ": 0.01687379, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Berserker", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442200, "SidewaysCard": false, "CustomDeck": { "4422": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762953650/C464E6CF3B4E95410CBDCF9DF9A024BB1E844BDB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809194753612067/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4450e8", "Name": "Deck", "Transform": { "posX": 21.50106, "posY": 1.49472, "posZ": -1.678073, "rotX": 359.920135, "rotY": 270.005859, "rotZ": 180.016861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 442000, 442100 ], "CustomDeck": { "4420": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762951140/276EF9061AE4858E49DE21169C3E9A06BCED7A36/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762951408/76741134B95A6F8EAB552F63FDA15ABE4C71C592/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4421": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762952050/CDD33B6656C7021A9F84DFDD5A01697E57314192/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762952270/2CBD840C3DA40C537DFC172DF8A3DA99F2B4DAC5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "768885", "Name": "CardCustom", "Transform": { "posX": 10.1787052, "posY": 1.52687192, "posZ": 26.8071518, "rotX": 359.920258, "rotY": 270.001221, "rotZ": 180.017, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442000, "SidewaysCard": false, "CustomDeck": { "4420": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762951140/276EF9061AE4858E49DE21169C3E9A06BCED7A36/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762951408/76741134B95A6F8EAB552F63FDA15ABE4C71C592/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0aae96", "Name": "CardCustom", "Transform": { "posX": 10.2043142, "posY": 1.48877728, "posZ": 26.791008, "rotX": 359.920135, "rotY": 270.005829, "rotZ": 180.016861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 442100, "SidewaysCard": false, "CustomDeck": { "4421": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762952050/CDD33B6656C7021A9F84DFDD5A01697E57314192/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762952270/2CBD840C3DA40C537DFC172DF8A3DA99F2B4DAC5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "a1be0c", "Name": "Deck", "Transform": { "posX": 21.5207539, "posY": 1.49965024, "posZ": -1.09029114, "rotX": 359.920135, "rotY": 269.977539, "rotZ": 0.01690565, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Brave Defenders", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 320500, 320400, 441900 ], "CustomDeck": { "3205": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762957072/40B696977845448576C9B32184F750D4CDC3B118/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833220346/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3204": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762955965/A1C814B90446F510D6151D9D6876A31DC22E924A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833220346/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "4419": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762955269/DAB9F683BBAD528A75D6B58DC943030134C7949F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833220346/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "c5c721", "Name": "CardCustom", "Transform": { "posX": -12.7738161, "posY": 1.6106602, "posZ": -7.530581, "rotX": 359.92, "rotY": 269.998871, "rotZ": 0.017024925, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 320500, "SidewaysCard": false, "CustomDeck": { "3205": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762957072/40B696977845448576C9B32184F750D4CDC3B118/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833220346/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0b1e79", "Name": "CardCustom", "Transform": { "posX": -13.08156, "posY": 1.64245582, "posZ": -7.664542, "rotX": 359.9195, "rotY": 270.001282, "rotZ": 0.095604606, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 320400, "SidewaysCard": false, "CustomDeck": { "3204": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762955965/A1C814B90446F510D6151D9D6876A31DC22E924A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833220346/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bd42be", "Name": "CardCustom", "Transform": { "posX": -12.5274477, "posY": 1.67419446, "posZ": -7.31165743, "rotX": 359.9205, "rotY": 270.040161, "rotZ": 359.989166, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 441900, "SidewaysCard": false, "CustomDeck": { "3203": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762955269/DAB9F683BBAD528A75D6B58DC943030134C7949F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833220346/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "160a13", "Name": "CardCustom", "Transform": { "posX": 21.5032921, "posY": 1.47773039, "posZ": -1.73831689, "rotX": 359.920319, "rotY": 270.003021, "rotZ": 0.0177230947, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Balor", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 320300, "SidewaysCard": false, "CustomDeck": { "3203": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762966899/83B5573BFE464DA49B0BF6FAECA2970E79B00B67/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1772706261524315425/FCFA3118F6A7A2DC6E90FCD15BBE1B3AC60EA44D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "856979", "Name": "CardCustom", "Transform": { "posX": -17.1202, "posY": 1.62339628, "posZ": 15.1865, "rotX": 359.9201, "rotY": 270.004761, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Spire Peak", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315000, "SidewaysCard": false, "CustomDeck": { "3150": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762857801/21A970A0252D0159A969D7925B214E6E192B2802/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1772706261524285859/D75F1EFEBB7CEAB4AD59EA19D93A77D6299CF3A3/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8681ca", "Name": "Custom_Tile", "Transform": { "posX": -27.4055, "posY": 1.61851907, "posZ": -3.91700053, "rotX": 0.0684146956, "rotY": 134.9915, "rotZ": 0.0445748, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "efd0ff", "Name": "Custom_Tile", "Transform": { "posX": -34.68044, "posY": 1.628664, "posZ": -3.91654563, "rotX": 359.963074, "rotY": 345.015717, "rotZ": 359.927124, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "93df12", "Name": "Custom_Tile", "Transform": { "posX": -30.2242, "posY": 1.62133777, "posZ": -7.70000124, "rotX": 359.9201, "rotY": 270.0086, "rotZ": 0.0168338437, "scaleX": 1.99723673, "scaleY": 1.0, "scaleZ": 1.99723673 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.99723673, "scaleY": 1.0, "scaleZ": 1.99723673 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 1.59778941, "scaleY": 1.0, "scaleZ": 1.59778941 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "94faff", "Name": "Deck", "Transform": { "posX": -9.870827, "posY": 1.646399, "posZ": 4.64390469, "rotX": 359.9201, "rotY": 269.990234, "rotZ": 0.0168489851, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frozen Winds", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 291300, 291200, 291700, 291600, 291500, 291400 ], "CustomDeck": { "2913": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762681984/25E6A38EE92C7405061DCF43C65FE697ABAC19B9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833258347/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2912": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762681464/F8D1F53FE9AAF9C921A7A9B478BD6DF93369BB15/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833258347/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2917": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762684049/BDDC287C78837633E90E67CF4C3387B2C00FA541/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833257495/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2916": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762683592/B2649FDCCAE62A43A9BBF9C8B8958913AAA2B93C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833257495/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2915": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762683045/7A48C60C5BCBC8A9C833DAB04463D71E8ABC5BA1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833256787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2914": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762682625/F1F0B826C345C9517CEA0E8AA45151822C5C5126/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833256787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "47a281", "Name": "CardCustom", "Transform": { "posX": -20.441431, "posY": 1.6268971, "posZ": 11.4513321, "rotX": 359.9204, "rotY": 269.9978, "rotZ": 0.0146393832, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291300, "SidewaysCard": false, "CustomDeck": { "2913": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762681984/25E6A38EE92C7405061DCF43C65FE697ABAC19B9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833258347/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "475236", "Name": "CardCustom", "Transform": { "posX": -17.1199932, "posY": 1.62230074, "posZ": 11.4599981, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168430619, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291200, "SidewaysCard": false, "CustomDeck": { "2912": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762681464/F8D1F53FE9AAF9C921A7A9B478BD6DF93369BB15/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833258347/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9112ca", "Name": "CardCustom", "Transform": { "posX": -20.203167, "posY": 1.62438321, "posZ": 3.9204762, "rotX": 359.920135, "rotY": 269.988678, "rotZ": 0.0167713873, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291700, "SidewaysCard": false, "CustomDeck": { "2917": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762684049/BDDC287C78837633E90E67CF4C3387B2C00FA541/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833257495/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a0d644", "Name": "CardCustom", "Transform": { "posX": -20.1409988, "posY": 1.65400577, "posZ": 3.97658, "rotX": 359.9198, "rotY": 269.997375, "rotZ": 0.0154327229, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291600, "SidewaysCard": false, "CustomDeck": { "2916": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762683592/B2649FDCCAE62A43A9BBF9C8B8958913AAA2B93C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833257495/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a207c0", "Name": "CardCustom", "Transform": { "posX": -19.9715843, "posY": 1.6877687, "posZ": 4.205989, "rotX": 359.923, "rotY": 269.9793, "rotZ": 0.0189715512, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291500, "SidewaysCard": false, "CustomDeck": { "2915": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762683045/7A48C60C5BCBC8A9C833DAB04463D71E8ABC5BA1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833256787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7cfb69", "Name": "CardCustom", "Transform": { "posX": -20.3037777, "posY": 1.697735, "posZ": 3.96401334, "rotX": 359.922455, "rotY": 270.008636, "rotZ": 0.0197817571, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291400, "SidewaysCard": false, "CustomDeck": { "2914": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762682625/F1F0B826C345C9517CEA0E8AA45151822C5C5126/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833256787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "9baf4e", "Name": "Custom_Tile", "Transform": { "posX": -20.3567, "posY": 1.61091638, "posZ": 3.65800047, "rotX": 359.93158, "rotY": 314.9879, "rotZ": 359.955444, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "b0ad18", "Name": "Deck", "Transform": { "posX": -2.72470522, "posY": 1.62076044, "posZ": 0.373301029, "rotX": 359.919739, "rotY": 270.0097, "rotZ": 0.0168232918, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 315700, 315600, 315500 ], "CustomDeck": { "3157": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762865585/11B7E7F5BE1AF82BF494A9947BC14F83254559C6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762865887/976CC2D9D6FFE2E7DC477D28509894A2CC49588B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3156": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762864612/2F9B082F7D1E008008F889B161C927ADDC5A6E63/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762864814/EE564D6014EDCDCF9CF949E4936A54FF82381950/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3155": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762863781/BC2C141BC1307EFCB628C157D9DCFAF63A5BE89F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833107755/FCEB7B75F6485B712C85B982C3B7A666A3B9B57B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "dddc30", "Name": "CardCustom", "Transform": { "posX": -11.2782831, "posY": 1.61138785, "posZ": 2.04729438, "rotX": 359.9188, "rotY": 270.0115, "rotZ": 0.016675435, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315700, "SidewaysCard": false, "CustomDeck": { "3157": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762865585/11B7E7F5BE1AF82BF494A9947BC14F83254559C6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762865887/976CC2D9D6FFE2E7DC477D28509894A2CC49588B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ddab7c", "Name": "CardCustom", "Transform": { "posX": -11.6540718, "posY": 1.64161015, "posZ": 2.13293052, "rotX": 359.916748, "rotY": 270.0417, "rotZ": 0.0157620665, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315600, "SidewaysCard": false, "CustomDeck": { "3156": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762864612/2F9B082F7D1E008008F889B161C927ADDC5A6E63/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762864814/EE564D6014EDCDCF9CF949E4936A54FF82381950/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ce5fc4", "Name": "CardCustom", "Transform": { "posX": -11.4882774, "posY": 1.67526364, "posZ": 1.95557249, "rotX": 359.921936, "rotY": 269.987732, "rotZ": 0.0176896956, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 315500, "SidewaysCard": false, "CustomDeck": { "3155": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762863781/BC2C141BC1307EFCB628C157D9DCFAF63A5BE89F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833107755/FCEB7B75F6485B712C85B982C3B7A666A3B9B57B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "cc88ec", "Name": "Deck", "Transform": { "posX": -9.843626, "posY": 1.64704657, "posZ": 6.976305, "rotX": 359.9201, "rotY": 269.995422, "rotZ": 0.0168411974, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mischievous Fairies", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 297900, 297800, 297700, 297600, 297500, 297400 ], "CustomDeck": { "2979": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762697542/A380B590729C1D1C256904B593855A28BB84763B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870682759733163678/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2978": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762697009/E4C955D829201DDF0C4FC9888E27B57A6AB9E644/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288584064/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2977": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762696389/2EADB91F50910F86E101787060109FB34E202771/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288584064/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2976": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762695729/504D2E1CD3C897B3C8C5BCA2A02650FE09D35458/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288583288/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2975": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762695199/C5AFA906EE60CE98993ACFA71C6636E656C35DEB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288582673/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2974": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762694577/AAEA6D33A8A1B325040D1DCEE09434A042B3B6D8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288582673/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e03fff", "Name": "CardCustom", "Transform": { "posX": -11.656971, "posY": 1.6090275, "posZ": -7.77442932, "rotX": 359.9201, "rotY": 269.997772, "rotZ": 0.0168729667, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297900, "SidewaysCard": false, "CustomDeck": { "2979": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762697542/A380B590729C1D1C256904B593855A28BB84763B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870682759733163678/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fe8092", "Name": "CardCustom", "Transform": { "posX": -11.6250544, "posY": 1.63926971, "posZ": -7.63182735, "rotX": 359.881378, "rotY": 270.002045, "rotZ": 0.0171944313, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297800, "SidewaysCard": false, "CustomDeck": { "2978": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762697009/E4C955D829201DDF0C4FC9888E27B57A6AB9E644/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288584064/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e2f1b7", "Name": "CardCustom", "Transform": { "posX": -11.6847639, "posY": 1.67279136, "posZ": -7.31335926, "rotX": 359.919647, "rotY": 269.9901, "rotZ": 0.0177378226, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297700, "SidewaysCard": false, "CustomDeck": { "2977": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762696389/2EADB91F50910F86E101787060109FB34E202771/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288584064/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8e7798", "Name": "CardCustom", "Transform": { "posX": -11.40305, "posY": 1.68200159, "posZ": -7.64775, "rotX": 359.916473, "rotY": 270.0028, "rotZ": 0.0162884947, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297600, "SidewaysCard": false, "CustomDeck": { "2976": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762695729/504D2E1CD3C897B3C8C5BCA2A02650FE09D35458/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288583288/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8b8509", "Name": "CardCustom", "Transform": { "posX": -11.6906509, "posY": 1.691909, "posZ": -7.876806, "rotX": 359.920044, "rotY": 269.9994, "rotZ": 0.016713284, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297500, "SidewaysCard": false, "CustomDeck": { "2975": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762695199/C5AFA906EE60CE98993ACFA71C6636E656C35DEB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288582673/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6ab3e2", "Name": "CardCustom", "Transform": { "posX": -11.423748, "posY": 1.70122659, "posZ": -7.772844, "rotX": 359.920258, "rotY": 270.000122, "rotZ": 0.01663073, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297400, "SidewaysCard": false, "CustomDeck": { "2974": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762694577/AAEA6D33A8A1B325040D1DCEE09434A042B3B6D8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288582673/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "dbdb22", "Name": "Custom_Tile", "Transform": { "posX": -33.2632, "posY": 1.62665737, "posZ": -4.0197, "rotX": 0.04461227, "rotY": 45.019886, "rotZ": 359.931641, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "df2baa", "Name": "Deck", "Transform": { "posX": -40.1255035, "posY": 1.77717614, "posZ": 11.2322006, "rotX": 359.9201, "rotY": 269.9892, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Balors Might Deck", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 323600, 323500, 328400, 323300, 323200, 325800, 323000, 328500, 322800, 322700, 322600, 322500, 328600, 328700, 322200, 322100, 322000, 321900, 321800, 321700, 321600, 321400, 321300, 321200 ], "CustomDeck": { "3236": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763051812/CF77BA2D1AC1B4D1A8B3E20CC3BCC6022948A357/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833311875/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3235": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763050996/934713A71828FC5FA42C5483DA31853CD66F6758/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833325472/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3284": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763050126/43B95328D5C2CE86CA77A88B283FE800B1E37E4F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833324854/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3233": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763049391/E098686D72D47431CB3EA3F434F842382E1BA3A0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833320579/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3232": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763048041/9CAA3D77ECFD62F14B51C423C3E8FF4F298EDB69/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833319565/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3258": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763047257/974789A53D1942F19C9B3306D7312636FF174436/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833319565/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3230": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763045890/9783D19CBC5045FD22F3EF59313A4395B3A1DE1B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833318552/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3285": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763045220/D2F17665A5890DB2A670A09C4CFB7718784D4C0D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833318552/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3228": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763043903/B05556822CA11713C7943C73F9E8AF00250677D6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833317777/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3227": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763043179/16EAEC3F185867FC3967D7924144C4CDEA0790CD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833317777/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3226": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763041696/65F247C5EE729B5A1C59D2CA172F715E51E90449/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833313554/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3225": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763040537/DBC683A5B4AE37FC56389306B296B7073D1D5B7F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833312717/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3286": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763039230/A749688A6013C6144683C3409F5BA47287F88173/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833325472/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3287": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763038587/445C1DFD5CFC76ED7C436D6073F4FCCEBC3CF65F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833311875/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3222": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763036709/6927402BFC601D5677B9CFFC6E8B3B15EFC341A6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833310953/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3221": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763036044/3D3AB34F3A3663DC3D66C08016FC7D087CD5E6DB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833310953/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3220": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763021865/B77921374F2EA4B02DA94E33A6DB9C2A0011CE3E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833307021/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3219": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763021299/B0C036DE019D620FF3B336DE3B5DAC279A5ED66F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833307021/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3218": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763020705/85C4D7A6B59270D7D8E56158F4BE0B41F64301BF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833307021/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3217": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763018286/0C5355691FE9A83E8AF90904D0A0431FB2226B11/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833306228/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3216": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763017701/86C5A73E7028EBBFF6BBB46813A8F35D9D793EFD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833306228/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3214": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763015436/301572C943678A45E55B38E1961B1FFF7F5A137D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833305398/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3213": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763014821/35C0EFD5417CBFB62B4C113956CF64CC5171CE2A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833305398/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3212": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763013665/0FF41BEC012612F19C29C0622372B73348150AEA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833304838/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "fec879", "Name": "CardCustom", "Transform": { "posX": -39.9817619, "posY": 1.92121482, "posZ": 15.324213, "rotX": 359.9316, "rotY": 269.999084, "rotZ": 180.014053, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323600, "SidewaysCard": false, "CustomDeck": { "3236": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763051812/CF77BA2D1AC1B4D1A8B3E20CC3BCC6022948A357/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833311875/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2d8fa0", "Name": "CardCustom", "Transform": { "posX": -33.7458458, "posY": 1.96331632, "posZ": 15.2892637, "rotX": 0.08024931, "rotY": 270.0028, "rotZ": 182.009552, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323500, "SidewaysCard": false, "CustomDeck": { "3235": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763050996/934713A71828FC5FA42C5483DA31853CD66F6758/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833325472/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cd9cb0", "Name": "CardCustom", "Transform": { "posX": -32.9459076, "posY": 1.92991185, "posZ": 15.5240889, "rotX": 0.03904083, "rotY": 270.006165, "rotZ": 181.83316, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328400, "SidewaysCard": false, "CustomDeck": { "3234": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763050126/43B95328D5C2CE86CA77A88B283FE800B1E37E4F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833324854/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "85cc42", "Name": "CardCustom", "Transform": { "posX": -33.53694, "posY": 2.378057, "posZ": 15.2772751, "rotX": 359.951263, "rotY": 270.015961, "rotZ": 205.563339, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323300, "SidewaysCard": false, "CustomDeck": { "3233": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763049391/E098686D72D47431CB3EA3F434F842382E1BA3A0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833320579/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "46e1bc", "Name": "CardCustom", "Transform": { "posX": -36.7731628, "posY": 1.64970613, "posZ": 11.4615059, "rotX": 359.9201, "rotY": 270.002472, "rotZ": 0.0168361887, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323200, "SidewaysCard": false, "CustomDeck": { "3232": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763048041/9CAA3D77ECFD62F14B51C423C3E8FF4F298EDB69/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833319565/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eb13f6", "Name": "CardCustom", "Transform": { "posX": -36.5955162, "posY": 1.68458712, "posZ": 11.4532194, "rotX": 359.920074, "rotY": 270.000122, "rotZ": 0.0168785229, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 325800, "SidewaysCard": false, "CustomDeck": { "3231": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763047257/974789A53D1942F19C9B3306D7312636FF174436/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833319565/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6ee51c", "Name": "CardCustom", "Transform": { "posX": -26.75114, "posY": 1.636757, "posZ": 15.0359154, "rotX": 359.9212, "rotY": 269.996735, "rotZ": 0.0156208845, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323000, "SidewaysCard": false, "CustomDeck": { "3230": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763045890/9783D19CBC5045FD22F3EF59313A4395B3A1DE1B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833318552/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b22399", "Name": "CardCustom", "Transform": { "posX": -26.738, "posY": 1.66646338, "posZ": 15.1022243, "rotX": 359.925781, "rotY": 270.0002, "rotZ": 0.0189889558, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328500, "SidewaysCard": false, "CustomDeck": { "3229": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763045220/D2F17665A5890DB2A670A09C4CFB7718784D4C0D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833318552/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "aaf8cf", "Name": "CardCustom", "Transform": { "posX": -43.3700027, "posY": 2.02889848, "posZ": 11.46, "rotX": 0.07863087, "rotY": 270.0118, "rotZ": 188.5244, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322800, "SidewaysCard": false, "CustomDeck": { "3228": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763043903/B05556822CA11713C7943C73F9E8AF00250677D6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833317777/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "836ac9", "Name": "CardCustom", "Transform": { "posX": -43.01445, "posY": 1.89422429, "posZ": 12.1048, "rotX": 0.07937526, "rotY": 270.002136, "rotZ": 181.5346, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322700, "SidewaysCard": false, "CustomDeck": { "3227": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763043179/16EAEC3F185867FC3967D7924144C4CDEA0790CD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833317777/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5fe44f", "Name": "CardCustom", "Transform": { "posX": -43.3700027, "posY": 1.93867421, "posZ": 11.46, "rotX": 0.0802682, "rotY": 270.007172, "rotZ": 185.1324, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322600, "SidewaysCard": false, "CustomDeck": { "3226": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763041696/65F247C5EE729B5A1C59D2CA172F715E51E90449/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833313554/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "63379c", "Name": "CardCustom", "Transform": { "posX": -43.1069374, "posY": 1.86332357, "posZ": 10.907546, "rotX": 0.609740734, "rotY": 270.007446, "rotZ": 180.70018, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322500, "SidewaysCard": false, "CustomDeck": { "3225": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763040537/DBC683A5B4AE37FC56389306B296B7073D1D5B7F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833312717/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "12dc50", "Name": "CardCustom", "Transform": { "posX": -36.7732124, "posY": 1.64856255, "posZ": 7.570002, "rotX": 359.9201, "rotY": 270.017883, "rotZ": 0.0168147683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328600, "SidewaysCard": false, "CustomDeck": { "3224": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763039230/A749688A6013C6144683C3409F5BA47287F88173/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833325472/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9c0a62", "Name": "CardCustom", "Transform": { "posX": -36.6244545, "posY": 1.68342, "posZ": 7.19026947, "rotX": 359.9201, "rotY": 270.0011, "rotZ": 0.0168381557, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328700, "SidewaysCard": false, "CustomDeck": { "3223": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763038587/445C1DFD5CFC76ED7C436D6073F4FCCEBC3CF65F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833311875/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "85da80", "Name": "CardCustom", "Transform": { "posX": -23.676548, "posY": 1.63030016, "posZ": 7.5700016, "rotX": 359.9201, "rotY": 270.003632, "rotZ": 0.0168346278, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322200, "SidewaysCard": false, "CustomDeck": { "3222": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763036709/6927402BFC601D5677B9CFFC6E8B3B15EFC341A6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833310953/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0ee577", "Name": "CardCustom", "Transform": { "posX": -23.3903141, "posY": 1.67705035, "posZ": 7.602246, "rotX": 359.390564, "rotY": 270.005646, "rotZ": 0.01683622, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322100, "SidewaysCard": false, "CustomDeck": { "3221": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763036044/3D3AB34F3A3663DC3D66C08016FC7D087CD5E6DB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833310953/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "17455f", "Name": "CardCustom", "Transform": { "posX": -27.2470951, "posY": 1.649873, "posZ": 9.54141, "rotX": 359.395752, "rotY": 269.896362, "rotZ": 0.0162093416, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322000, "SidewaysCard": false, "CustomDeck": { "3220": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763021865/B77921374F2EA4B02DA94E33A6DB9C2A0011CE3E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833307021/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f1f042", "Name": "CardCustom", "Transform": { "posX": -26.8373, "posY": 1.67579055, "posZ": 9.221949, "rotX": 359.387726, "rotY": 270.020477, "rotZ": -0.005168481, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321900, "SidewaysCard": false, "CustomDeck": { "3219": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763021299/B0C036DE019D620FF3B336DE3B5DAC279A5ED66F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833307021/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0a4a39", "Name": "CardCustom", "Transform": { "posX": -26.7898388, "posY": 1.73566878, "posZ": 9.05211, "rotX": 359.871277, "rotY": 269.975922, "rotZ": 359.952484, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321800, "SidewaysCard": false, "CustomDeck": { "3218": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763020705/85C4D7A6B59270D7D8E56158F4BE0B41F64301BF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833307021/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "97184e", "Name": "CardCustom", "Transform": { "posX": -43.32699, "posY": 1.7880969, "posZ": 11.3791485, "rotX": 0.0, "rotY": 270.0, "rotZ": 177.7347, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321700, "SidewaysCard": false, "CustomDeck": { "3217": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763018286/0C5355691FE9A83E8AF90904D0A0431FB2226B11/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833306228/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0a1fa3", "Name": "CardCustom", "Transform": { "posX": -43.5108566, "posY": 1.69402885, "posZ": 11.4263144, "rotX": 359.9201, "rotY": 270.0032, "rotZ": 0.0168350674, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321600, "SidewaysCard": false, "CustomDeck": { "3216": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763017701/86C5A73E7028EBBFF6BBB46813A8F35D9D793EFD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833306228/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "102664", "Name": "CardCustom", "Transform": { "posX": -24.0492268, "posY": 1.75123274, "posZ": 7.372127, "rotX": 359.919739, "rotY": 269.994324, "rotZ": 177.189255, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321400, "SidewaysCard": false, "CustomDeck": { "3214": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763015436/301572C943678A45E55B38E1961B1FFF7F5A137D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833305398/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "10d920", "Name": "CardCustom", "Transform": { "posX": -23.67654, "posY": 1.6762104, "posZ": 7.570001, "rotX": 0.08133649, "rotY": 270.003143, "rotZ": 179.984482, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321300, "SidewaysCard": false, "CustomDeck": { "3213": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763014821/35C0EFD5417CBFB62B4C113956CF64CC5171CE2A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833305398/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "35c93c", "Name": "CardCustom", "Transform": { "posX": -23.6765747, "posY": 1.63029921, "posZ": 7.57195568, "rotX": 359.920135, "rotY": 269.996948, "rotZ": 180.016953, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321200, "SidewaysCard": false, "CustomDeck": { "3212": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528763013665/0FF41BEC012612F19C29C0622372B73348150AEA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833304838/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "e3a4be", "Name": "Deck", "Transform": { "posX": -9.823827, "posY": 1.64769578, "posZ": 9.278907, "rotX": 359.9201, "rotY": 269.974731, "rotZ": 0.0168713424, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Angry Pixies", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 298800, 298700, 298600, 298500, 298400, 298300 ], "CustomDeck": { "2988": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762703483/42F477BAFC53D03E0EADAEE73404EC470F07DD0F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870682759733161329/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2987": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762702860/329AA53FF4F3FCA94BCAF22E0C8230FCBE50145D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288589181/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2986": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762702294/1A63AB3CBAD4DF9DE5B3D2EE725B10985B10865C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288589181/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2985": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762701476/2BF939E23AB46F987D483C27CD866E335C3F3F26/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288588517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2984": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762700793/5093FED0EF15AFD93C2782D5B6270F4A5C6C43BC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288588517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2983": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762700287/D0B8C00CDB31AAB733B9F810D16AC178F428AB01/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288587818/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "7547a7", "Name": "CardCustom", "Transform": { "posX": -11.6109715, "posY": 1.61237931, "posZ": -5.59063244, "rotX": 359.9203, "rotY": 270.00415, "rotZ": 0.16188848, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298800, "SidewaysCard": false, "CustomDeck": { "2988": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762703483/42F477BAFC53D03E0EADAEE73404EC470F07DD0F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870682759733161329/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9e55b4", "Name": "CardCustom", "Transform": { "posX": -11.5025215, "posY": 1.65387058, "posZ": -5.23155928, "rotX": 359.919861, "rotY": 270.024384, "rotZ": 0.1618625, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298700, "SidewaysCard": false, "CustomDeck": { "2987": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762702860/329AA53FF4F3FCA94BCAF22E0C8230FCBE50145D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288589181/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "38cb8f", "Name": "CardCustom", "Transform": { "posX": -11.8140745, "posY": 1.675899, "posZ": -5.754191, "rotX": 359.919983, "rotY": 269.999359, "rotZ": 0.1322367, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298600, "SidewaysCard": false, "CustomDeck": { "2986": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762702294/1A63AB3CBAD4DF9DE5B3D2EE725B10985B10865C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288589181/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "466c4b", "Name": "CardCustom", "Transform": { "posX": -11.6274052, "posY": 1.68689334, "posZ": -5.679313, "rotX": 359.919128, "rotY": 270.000244, "rotZ": 0.106944256, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298500, "SidewaysCard": false, "CustomDeck": { "2985": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762701476/2BF939E23AB46F987D483C27CD866E335C3F3F26/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288588517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d6cd6f", "Name": "CardCustom", "Transform": { "posX": -11.6230717, "posY": 1.69681668, "posZ": -5.507654, "rotX": 359.919678, "rotY": 270.0011, "rotZ": 0.11289797, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298400, "SidewaysCard": false, "CustomDeck": { "2984": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762700793/5093FED0EF15AFD93C2782D5B6270F4A5C6C43BC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288588517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5c2b56", "Name": "CardCustom", "Transform": { "posX": -11.7544918, "posY": 1.70506561, "posZ": -6.06258726, "rotX": 359.919342, "rotY": 269.99707, "rotZ": 0.114070214, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298300, "SidewaysCard": false, "CustomDeck": { "2983": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762700287/D0B8C00CDB31AAB733B9F810D16AC178F428AB01/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288587818/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "e8ad50", "Name": "Custom_Tile", "Transform": { "posX": -27.273, "posY": 1.62060153, "posZ": 3.7968, "rotX": 0.0445325337, "rotY": 44.95309, "rotZ": 359.93158, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "685c94", "Name": "Custom_Tile", "Transform": { "posX": -34.7427521, "posY": 1.63108706, "posZ": 4.03353071, "rotX": 0.004422688, "rotY": 15.005764, "rotZ": 359.918457, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "f35597", "Name": "Deck", "Transform": { "posX": -9.868026, "posY": 1.64571023, "posZ": 2.31340623, "rotX": 359.9201, "rotY": 269.979156, "rotZ": 0.0168639831, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Burnt Air", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 329100, 329000, 290300, 290200, 328900, 328800 ], "CustomDeck": { "3291": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827127518/24B5C03DCF49ABA6A83996F55B3F77C32D0B947B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287465679/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3290": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827126743/4777E29D1EB87E538C2E24C29ADA529A9CBA0595/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287465679/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2903": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762665674/271804598A3B68F85E066CE2738D1A0D757C5E9C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287464736/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2902": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762665150/CF0B9174981ACCCD5024630BF6C7D13A627CD0FE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287464736/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3289": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827125507/A0FAAABEA3D0E58BF95E43E6B9BA634DB8B1AE80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287463754/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3288": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827124927/25BDA44A853F2AA3447B11C58532A4A068BE658B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287463754/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "92c8f2", "Name": "CardCustom", "Transform": { "posX": -23.6766415, "posY": 1.62358487, "posZ": -15.2799988, "rotX": 359.9201, "rotY": 269.979248, "rotZ": 0.0168685243, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 329100, "SidewaysCard": false, "CustomDeck": { "3291": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827127518/24B5C03DCF49ABA6A83996F55B3F77C32D0B947B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287465679/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8af4d5", "Name": "CardCustom", "Transform": { "posX": -23.5190754, "posY": 1.707198, "posZ": -15.0581236, "rotX": 359.920044, "rotY": 269.991943, "rotZ": 0.0167476032, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 329000, "SidewaysCard": false, "CustomDeck": { "3290": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827126743/4777E29D1EB87E538C2E24C29ADA529A9CBA0595/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287465679/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9d8114", "Name": "CardCustom", "Transform": { "posX": -23.6765747, "posY": 1.62581253, "posZ": -7.70000458, "rotX": 359.9201, "rotY": 269.993561, "rotZ": 0.0168484, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290300, "SidewaysCard": false, "CustomDeck": { "2903": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762665674/271804598A3B68F85E066CE2738D1A0D757C5E9C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287464736/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7310a7", "Name": "CardCustom", "Transform": { "posX": -23.9400482, "posY": 1.66108716, "posZ": -7.49365139, "rotX": 359.920135, "rotY": 269.995178, "rotZ": 0.0168849789, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290200, "SidewaysCard": false, "CustomDeck": { "2902": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762665150/CF0B9174981ACCCD5024630BF6C7D13A627CD0FE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287464736/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4ec16a", "Name": "CardCustom", "Transform": { "posX": -23.3836, "posY": 1.74526465, "posZ": -7.97850943, "rotX": 1.89992237, "rotY": 269.992981, "rotZ": 0.0168097988, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328900, "SidewaysCard": false, "CustomDeck": { "3289": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827125507/A0FAAABEA3D0E58BF95E43E6B9BA634DB8B1AE80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287463754/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "824284", "Name": "CardCustom", "Transform": { "posX": -23.022562, "posY": 1.70408845, "posZ": -7.54740524, "rotX": 359.9201, "rotY": 269.995148, "rotZ": 0.0168469641, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 328800, "SidewaysCard": false, "CustomDeck": { "3288": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827124927/25BDA44A853F2AA3447B11C58532A4A068BE658B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287463754/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "f6c3ea", "Name": "Deck", "Transform": { "posX": -2.688227, "posY": 1.61911619, "posZ": -5.04849529, "rotX": 359.919739, "rotY": 269.9921, "rotZ": 0.01684826, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 316300, 316200, 316100 ], "CustomDeck": { "3163": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762870008/C1F3922D6F4ADFC071352BE42F7064E97423E944/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833112361/0406D7470C524756A1C307DF0E639A101CCF3280/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3162": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762868921/754B8CBA0E5892B4ECBF705E29BCB1397D10DEA1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752432802855389832/056D4FFBCE63C465B4177301DC1F1B048B366A9B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3161": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762868270/AEE1C60EBE854984A74D3DE8E51AEE0659C333B1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1772706261524280505/9F8087C8B8C7322CA6CC23320D817D7095FD4D78/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "740a69", "Name": "CardCustom", "Transform": { "posX": -11.4332161, "posY": 1.61212933, "posZ": 3.89848661, "rotX": 359.9205, "rotY": 269.9978, "rotZ": 0.0162222534, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 316300, "SidewaysCard": false, "CustomDeck": { "3163": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762870008/C1F3922D6F4ADFC071352BE42F7064E97423E944/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833112361/0406D7470C524756A1C307DF0E639A101CCF3280/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3db5ea", "Name": "CardCustom", "Transform": { "posX": -11.2445564, "posY": 1.64172828, "posZ": 4.158204, "rotX": 359.9188, "rotY": 269.97757, "rotZ": 0.0178877916, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 316200, "SidewaysCard": false, "CustomDeck": { "3162": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762868921/754B8CBA0E5892B4ECBF705E29BCB1397D10DEA1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752432802855389832/056D4FFBCE63C465B4177301DC1F1B048B366A9B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "df871e", "Name": "CardCustom", "Transform": { "posX": -11.7120523, "posY": 1.676311, "posZ": 4.458137, "rotX": 359.92, "rotY": 269.998474, "rotZ": 0.0165711828, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 316100, "SidewaysCard": false, "CustomDeck": { "3161": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762868270/AEE1C60EBE854984A74D3DE8E51AEE0659C333B1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1772706261524280505/9F8087C8B8C7322CA6CC23320D817D7095FD4D78/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ], "AttachedDecals": [ { "Transform": { "posX": -0.0021877822, "posY": -0.08963572, "posZ": -0.00288731651, "rotX": 270.0, "rotY": 359.869568, "rotZ": 0.0, "scaleX": 2.00000215, "scaleY": 2.00000238, "scaleZ": 2.00000262 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }, { "GUID": "40367b", "Name": "Custom_PDF", "Transform": { "posX": -7.247704, "posY": 1.48325658, "posZ": -28.3811131, "rotX": 359.9201, "rotY": 270.0154, "rotZ": 0.0168502945, "scaleX": 3.84113264, "scaleY": 1.0, "scaleZ": 3.84113264 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomPDF": { "PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1924742988089292005/BFE8549DEB33606DDA6710E8F5A2D1372C157110/", "PDFPassword": "", "PDFPage": 0, "PDFPageOffset": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "446d4c", "Name": "Custom_Model_Bag", "Transform": { "posX": 8.986601, "posY": 1.4717555, "posZ": 9.4227, "rotX": 359.920135, "rotY": 269.9999, "rotZ": 0.01687528, "scaleX": 1.29821277, "scaleY": 0.2702163, "scaleZ": 1.42157257 }, "Nickname": "Away With The Fairies", "Description": "Celtic Rising - Scenario 2", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754685726010470028/A0D17486263A3C9B6F1ACFE13432BFB123E75004/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CustomShader": { "SpecularColor": { "r": 1.0, "g": 1.0, "b": 1.0 }, "SpecularIntensity": 0.0, "SpecularSharpness": 2.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"049c7b\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6644,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.025,\"z\":180.0168}},\"0542dc\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6429,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"0834cb\":{\"lock\":false,\"pos\":{\"x\":-17.1385,\"y\":1.6189,\"z\":-0.0298},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"0a8f4d\":{\"lock\":false,\"pos\":{\"x\":-38.272,\"y\":1.6348,\"z\":-0.0445},\"rot\":{\"x\":359.9201,\"y\":270.0269,\"z\":0.0168}},\"0fde15\":{\"lock\":false,\"pos\":{\"x\":-33.5169,\"y\":1.6304,\"z\":7.6511},\"rot\":{\"x\":359.9201,\"y\":270.0099,\"z\":0.0169}},\"133a8b\":{\"lock\":false,\"pos\":{\"x\":-26.8949,\"y\":1.6201,\"z\":4.0338},\"rot\":{\"x\":359.9455,\"y\":330.0066,\"z\":359.9392}},\"1a19f0\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9955,\"z\":0.0168}},\"2c2af1\":{\"lock\":false,\"pos\":{\"x\":-40.3572,\"y\":1.6365,\"z\":-4.149},\"rot\":{\"x\":0.0546,\"y\":149.9884,\"z\":0.0608}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-26.789,\"y\":1.6177,\"z\":-3.8936},\"rot\":{\"x\":0.0253,\"y\":29.9845,\"z\":359.9224}},\"48d03d\":{\"lock\":false,\"pos\":{\"x\":-32.116,\"y\":1.6274,\"z\":3.8183},\"rot\":{\"x\":0.0044,\"y\":14.9844,\"z\":359.9185}},\"5166d6\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6441,\"z\":-7.6988},\"rot\":{\"x\":359.9201,\"y\":269.998,\"z\":180.0168}},\"53ccc2\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0108,\"z\":0.0168}},\"56bfbc\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6361,\"z\":11.46},\"rot\":{\"x\":359.9832,\"y\":0.0206,\"z\":359.92}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.3983,\"y\":1.6099,\"z\":-0.1081},\"rot\":{\"x\":359.9201,\"y\":270.0126,\"z\":0.0169}},\"7b4986\":{\"lock\":false,\"pos\":{\"x\":-33.5396,\"y\":1.626,\"z\":-7.6581},\"rot\":{\"x\":0.0799,\"y\":89.9952,\"z\":359.9831}},\"90edc4\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9198,\"y\":269.9496,\"z\":0.0169}},\"abffd6\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9998,\"z\":0.0687}},\"bdf6ab\":{\"lock\":false,\"pos\":{\"x\":-36.7619,\"y\":1.6418,\"z\":-15.281},\"rot\":{\"x\":359.9201,\"y\":269.9978,\"z\":180.0168}},\"c115fa\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"c4fcd2\":{\"lock\":false,\"pos\":{\"x\":-40.3535,\"y\":1.6389,\"z\":3.8504},\"rot\":{\"x\":359.9746,\"y\":210.0115,\"z\":0.0776}},\"c5af38\":{\"lock\":false,\"pos\":{\"x\":-32.2861,\"y\":1.6253,\"z\":-4.0046},\"rot\":{\"x\":359.9631,\"y\":345.0115,\"z\":359.9272}},\"d9a437\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6294,\"z\":-11.51},\"rot\":{\"x\":359.9832,\"y\":0.0121,\"z\":359.92}},\"e791a7\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6441,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270.0058,\"z\":0.0168}},\"ef8fdf\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6508,\"z\":15.1956},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"f0decc\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"fcb3bc\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7492,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0129,\"z\":0.0168}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "abffd6", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.6978761, "posY": 1.55831409, "posZ": 14.2784939, "rotX": 359.955139, "rotY": 224.999786, "rotZ": 0.06867231, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.0, "g": 0.8205574, "b": 0.619230568 }, "LayoutGroupSortIndex": 0, "Value": 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": "2e73a5", "Name": "Custom_Tile", "Transform": { "posX": 13.5163774, "posY": 3.52487969, "posZ": 10.9615412, "rotX": 359.877869, "rotY": 269.886475, "rotZ": 0.0537942052, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/stbBxtx.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a5e6c0", "Name": "Custom_Tile", "Transform": { "posX": 13.6194983, "posY": 3.52360678, "posZ": 9.171434, "rotX": 359.850616, "rotY": 270.009735, "rotZ": 0.01913788, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/ttnspKt.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6fe262", "Name": "Custom_Tile", "Transform": { "posX": 13.523469, "posY": 3.523548, "posZ": 9.28798, "rotX": 359.912354, "rotY": 270.002136, "rotZ": 0.0165938772, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/VzhJJaH.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5f85f4", "Name": "CardCustom", "Transform": { "posX": 28.22488, "posY": 1.46962857, "posZ": 1.55120564, "rotX": 359.920319, "rotY": 269.999329, "rotZ": 0.0177229028, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Carmin", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 296300, "SidewaysCard": false, "CustomDeck": { "2963": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526972574/A99128302E6DD7D053B75ABCDDE9AEC30DC433F2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351675590/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "067e9c", "Name": "CardCustom", "Transform": { "posX": 28.1611652, "posY": 1.46960342, "posZ": 1.65723217, "rotX": 359.920135, "rotY": 270.000122, "rotZ": 180.016861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fairy Grove", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 296200, "SidewaysCard": false, "CustomDeck": { "2962": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526971811/BAC424ED8F3C8EE094C1C36651F0F313DC25ED25/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288531845/8E83513ECF11F71B13D07F88CF563B8CFCC366A6/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "fcb3bc", "Name": "Deck", "Transform": { "posX": -3.92772746, "posY": 1.74919283, "posZ": 5.7571063, "rotX": 359.919739, "rotY": 270.012878, "rotZ": 0.0168299079, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 299200, 299100, 323700, 323600, 298800, 298700, 298600, 298500, 298400, 298300, 297900, 297800, 297700, 297600, 297500, 297400, 323800, 296000, 321600, 321700, 295700, 295600, 295500, 295400, 295300, 321800, 321900, 322000, 322100 ], "CustomDeck": { "2992": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762707892/E5332AD085D1046B627BDD223BB6F5D669778FC2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2991": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762707417/989D209CE3752467F3B9A74B33CB7B79ADB855DE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3237": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179173291/72A8CB2FA9E03A2267C33441EE0B2F96B50B926C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3236": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179172666/089F3685557BD525F64970AA01EC2F31A98083D0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2988": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762703483/42F477BAFC53D03E0EADAEE73404EC470F07DD0F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870682759733161329/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2987": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762702860/329AA53FF4F3FCA94BCAF22E0C8230FCBE50145D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288589181/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2986": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762702294/1A63AB3CBAD4DF9DE5B3D2EE725B10985B10865C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288589181/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2985": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762701476/2BF939E23AB46F987D483C27CD866E335C3F3F26/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288588517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2984": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762700793/5093FED0EF15AFD93C2782D5B6270F4A5C6C43BC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288588517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2983": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762700287/D0B8C00CDB31AAB733B9F810D16AC178F428AB01/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288587818/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2979": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762697542/A380B590729C1D1C256904B593855A28BB84763B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870682759733163678/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2978": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762697009/E4C955D829201DDF0C4FC9888E27B57A6AB9E644/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288584064/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2977": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762696389/2EADB91F50910F86E101787060109FB34E202771/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288584064/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2976": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762695729/504D2E1CD3C897B3C8C5BCA2A02650FE09D35458/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288583288/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2975": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762695199/C5AFA906EE60CE98993ACFA71C6636E656C35DEB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288582673/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2974": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762694577/AAEA6D33A8A1B325040D1DCEE09434A042B3B6D8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288582673/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3238": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861684358567212597/ADB79DF08931C35C6DCEC77A780FCB99996D2125/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351693420/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2960": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526968322/F3519081D4B595E932572DC7B17045DF1ECF299F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752433209417701782/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3216": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526967696/BFF89D1F4C31797BE6D802533FB670127EDFEF57/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752433209417701782/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3217": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526966965/500B83C6A6EC20DC9C3F882536BB29CF77CC01AF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351692549/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2957": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526966292/36DDD3EA12DF9DD8E3626CF05FC49436CAE7DB9C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351692549/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2956": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526964788/61AA24EE793FEF07B1C65A24888B4C7116EAD745/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351691167/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2955": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526964078/126C094676CC0AE5A699B1B662CC9B2115D60913/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351691167/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2954": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526963472/17B356F69D1E6795FCB8220D5C93FC277B044917/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351691167/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2953": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526961997/B7A8E3355870DB58E9F1F9A1421EF84ADED8FFA1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870682759733155760/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3218": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526960960/6B36084EDE46E9BD3EAC7AD53052E8BCADA0A366/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752433209417700755/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3219": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526959989/258C23F1EE4AA00B40A55D8CA747968CFB98B160/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351689768/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3220": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526959407/6114D57848063E74015C2AF76DB7BDAFAB1090A3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351689768/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3221": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526958676/B0D31BE28797733B23BD84FBB04B2F660FB6D360/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351689768/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "95754c", "Name": "CardCustom", "Transform": { "posX": -11.5126486, "posY": 1.60786474, "posZ": -11.0299368, "rotX": 359.9202, "rotY": 269.971924, "rotZ": 0.0166095812, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 299200, "SidewaysCard": false, "CustomDeck": { "2992": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762707892/E5332AD085D1046B627BDD223BB6F5D669778FC2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8099c7", "Name": "CardCustom", "Transform": { "posX": -11.3310528, "posY": 1.6373297, "posZ": -10.9962749, "rotX": 359.920837, "rotY": 269.9903, "rotZ": 0.017162241, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 299100, "SidewaysCard": false, "CustomDeck": { "2991": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762707417/989D209CE3752467F3B9A74B33CB7B79ADB855DE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2c9de5", "Name": "CardCustom", "Transform": { "posX": -11.533411, "posY": 1.61045837, "posZ": -2.316599, "rotX": 359.920135, "rotY": 269.995331, "rotZ": 0.0165807512, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323700, "SidewaysCard": false, "CustomDeck": { "3237": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179173291/72A8CB2FA9E03A2267C33441EE0B2F96B50B926C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "570cba", "Name": "CardCustom", "Transform": { "posX": -11.5595789, "posY": 1.64020455, "posZ": -2.12147141, "rotX": 359.921356, "rotY": 269.994781, "rotZ": 0.0147209158, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323600, "SidewaysCard": false, "CustomDeck": { "3236": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179172666/089F3685557BD525F64970AA01EC2F31A98083D0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7547a7", "Name": "CardCustom", "Transform": { "posX": -11.8927984, "posY": 1.69465292, "posZ": 0.341722876, "rotX": 359.9206, "rotY": 270.03244, "rotZ": 0.01009797, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298800, "SidewaysCard": false, "CustomDeck": { "2988": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762703483/42F477BAFC53D03E0EADAEE73404EC470F07DD0F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870682759733161329/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9e55b4", "Name": "CardCustom", "Transform": { "posX": -11.866931, "posY": 1.70428419, "posZ": 0.631667, "rotX": 359.9202, "rotY": 269.995361, "rotZ": 0.01666929, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298700, "SidewaysCard": false, "CustomDeck": { "2987": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762702860/329AA53FF4F3FCA94BCAF22E0C8230FCBE50145D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288589181/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "38cb8f", "Name": "CardCustom", "Transform": { "posX": -12.17794, "posY": 1.71448433, "posZ": 1.28257918, "rotX": 359.919159, "rotY": 269.991577, "rotZ": 0.0108004035, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298600, "SidewaysCard": false, "CustomDeck": { "2986": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762702294/1A63AB3CBAD4DF9DE5B3D2EE725B10985B10865C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288589181/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "466c4b", "Name": "CardCustom", "Transform": { "posX": -11.5009108, "posY": 1.60839164, "posZ": -9.20024, "rotX": 359.920135, "rotY": 269.995819, "rotZ": 0.0166360755, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298500, "SidewaysCard": false, "CustomDeck": { "2985": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762701476/2BF939E23AB46F987D483C27CD866E335C3F3F26/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288588517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d6cd6f", "Name": "CardCustom", "Transform": { "posX": -11.18243, "posY": 1.63772941, "posZ": -8.980646, "rotX": 359.920624, "rotY": 269.990082, "rotZ": 0.0158395059, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298400, "SidewaysCard": false, "CustomDeck": { "2984": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762700793/5093FED0EF15AFD93C2782D5B6270F4A5C6C43BC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288588517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5c2b56", "Name": "CardCustom", "Transform": { "posX": -11.1562653, "posY": 1.672095, "posZ": -8.625211, "rotX": 359.906067, "rotY": 269.985779, "rotZ": -0.00221676263, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 298300, "SidewaysCard": false, "CustomDeck": { "2983": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762700287/D0B8C00CDB31AAB733B9F810D16AC178F428AB01/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288587818/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e03fff", "Name": "CardCustom", "Transform": { "posX": -11.1517763, "posY": 1.68119538, "posZ": -9.161405, "rotX": 359.920135, "rotY": 269.9916, "rotZ": 0.0177994668, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297900, "SidewaysCard": false, "CustomDeck": { "2979": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762697542/A380B590729C1D1C256904B593855A28BB84763B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870682759733163678/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fe8092", "Name": "CardCustom", "Transform": { "posX": -11.4600048, "posY": 1.69137764, "posZ": -8.502874, "rotX": 359.919556, "rotY": 270.017731, "rotZ": 0.0151482141, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297800, "SidewaysCard": false, "CustomDeck": { "2978": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762697009/E4C955D829201DDF0C4FC9888E27B57A6AB9E644/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288584064/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e2f1b7", "Name": "CardCustom", "Transform": { "posX": -11.6602011, "posY": 1.70102322, "posZ": -9.438501, "rotX": 359.919983, "rotY": 270.0271, "rotZ": 0.0173526891, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297700, "SidewaysCard": false, "CustomDeck": { "2977": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762696389/2EADB91F50910F86E101787060109FB34E202771/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288584064/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8e7798", "Name": "CardCustom", "Transform": { "posX": -11.270401, "posY": 1.71029389, "posZ": -8.926905, "rotX": 359.920227, "rotY": 269.996155, "rotZ": 0.0164374448, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297600, "SidewaysCard": false, "CustomDeck": { "2976": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762695729/504D2E1CD3C897B3C8C5BCA2A02650FE09D35458/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288583288/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8b8509", "Name": "CardCustom", "Transform": { "posX": -12.1680441, "posY": 1.60897458, "posZ": -10.478159, "rotX": 359.9192, "rotY": 270.030273, "rotZ": 0.0176442247, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297500, "SidewaysCard": false, "CustomDeck": { "2975": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762695199/C5AFA906EE60CE98993ACFA71C6636E656C35DEB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288582673/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6ab3e2", "Name": "CardCustom", "Transform": { "posX": -11.7951736, "posY": 1.6381824, "posZ": -10.489439, "rotX": 359.916351, "rotY": 269.9706, "rotZ": 0.0120117739, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 297400, "SidewaysCard": false, "CustomDeck": { "2974": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762694577/AAEA6D33A8A1B325040D1DCEE09434A042B3B6D8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288582673/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7aeb9b", "Name": "CardCustom", "Transform": { "posX": -8.110131, "posY": 1.807217, "posZ": 7.25306368, "rotX": 359.9223, "rotY": 270.0149, "rotZ": 359.991, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323800, "SidewaysCard": false, "CustomDeck": { "3238": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861684358567212597/ADB79DF08931C35C6DCEC77A780FCB99996D2125/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351693420/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "320c7b", "Name": "CardCustom", "Transform": { "posX": -8.145779, "posY": 1.8166281, "posZ": 7.08207464, "rotX": 359.923462, "rotY": 269.981873, "rotZ": 0.0169771034, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 296000, "SidewaysCard": false, "CustomDeck": { "2960": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526968322/F3519081D4B595E932572DC7B17045DF1ECF299F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752433209417701782/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0a5afb", "Name": "CardCustom", "Transform": { "posX": -8.252578, "posY": 1.82643914, "posZ": 7.425527, "rotX": 359.9189, "rotY": 270.009979, "rotZ": 0.0154105565, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321600, "SidewaysCard": false, "CustomDeck": { "3216": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526967696/BFF89D1F4C31797BE6D802533FB670127EDFEF57/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752433209417701782/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "06d2ab", "Name": "CardCustom", "Transform": { "posX": -8.692641, "posY": 1.83657169, "posZ": 7.238749, "rotX": 359.921417, "rotY": 270.016449, "rotZ": 0.0171828, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321700, "SidewaysCard": false, "CustomDeck": { "3217": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526966965/500B83C6A6EC20DC9C3F882536BB29CF77CC01AF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351692549/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d1ac45", "Name": "CardCustom", "Transform": { "posX": -8.329011, "posY": 1.84583306, "posZ": 7.560539, "rotX": 359.921082, "rotY": 270.007568, "rotZ": 0.016867429, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 295700, "SidewaysCard": false, "CustomDeck": { "2957": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526966292/36DDD3EA12DF9DD8E3626CF05FC49436CAE7DB9C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351692549/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "87eb16", "Name": "CardCustom", "Transform": { "posX": -11.5589342, "posY": 1.60879481, "posZ": -8.10965252, "rotX": 359.9201, "rotY": 270.0053, "rotZ": 0.0168321487, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 295600, "SidewaysCard": false, "CustomDeck": { "2956": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526964788/61AA24EE793FEF07B1C65A24888B4C7116EAD745/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351691167/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "60ec37", "Name": "CardCustom", "Transform": { "posX": -11.494813, "posY": 1.646616, "posZ": -8.304652, "rotX": 359.920074, "rotY": 270.0043, "rotZ": 0.0168237425, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 295500, "SidewaysCard": false, "CustomDeck": { "2955": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526964078/126C094676CC0AE5A699B1B662CC9B2115D60913/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351691167/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e2ac4b", "Name": "CardCustom", "Transform": { "posX": -12.3911552, "posY": 1.67924142, "posZ": -5.430019, "rotX": 359.9201, "rotY": 270.014343, "rotZ": 0.104402751, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 295400, "SidewaysCard": false, "CustomDeck": { "2954": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526963472/17B356F69D1E6795FCB8220D5C93FC277B044917/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351691167/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ec532b", "Name": "CardCustom", "Transform": { "posX": -12.5648155, "posY": 1.68944764, "posZ": -4.723199, "rotX": 359.932343, "rotY": 270.0376, "rotZ": 0.157774135, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 295300, "SidewaysCard": false, "CustomDeck": { "2953": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526961997/B7A8E3355870DB58E9F1F9A1421EF84ADED8FFA1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1870682759733155760/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8fcdeb", "Name": "CardCustom", "Transform": { "posX": -12.9968195, "posY": 1.69675684, "posZ": 2.26733732, "rotX": 359.916321, "rotY": 270.032928, "rotZ": 0.009234895, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321800, "SidewaysCard": false, "CustomDeck": { "3218": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526960960/6B36084EDE46E9BD3EAC7AD53052E8BCADA0A366/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752433209417700755/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cddc96", "Name": "CardCustom", "Transform": { "posX": -12.9648809, "posY": 1.70633328, "posZ": 2.38015985, "rotX": 359.918365, "rotY": 270.006958, "rotZ": 0.0156738888, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321900, "SidewaysCard": false, "CustomDeck": { "3219": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526959989/258C23F1EE4AA00B40A55D8CA747968CFB98B160/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351689768/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f257cf", "Name": "CardCustom", "Transform": { "posX": -12.9874306, "posY": 1.71611655, "posZ": 2.83504367, "rotX": 359.9203, "rotY": 270.0051, "rotZ": 0.0158785284, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322000, "SidewaysCard": false, "CustomDeck": { "3220": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526959407/6114D57848063E74015C2AF76DB7BDAFAB1090A3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351689768/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "127824", "Name": "CardCustom", "Transform": { "posX": -13.4266129, "posY": 1.72615349, "posZ": 2.34853029, "rotX": 359.919983, "rotY": 270.0043, "rotZ": 0.0164371561, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322100, "SidewaysCard": false, "CustomDeck": { "3221": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526958676/B0D31BE28797733B23BD84FBB04B2F660FB6D360/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351689768/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "1a19f0", "Name": "Deck", "Transform": { "posX": -2.72470522, "posY": 1.62076044, "posZ": 0.37330085, "rotX": 359.919739, "rotY": 269.9955, "rotZ": 0.0168431625, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 294400, 294300, 294200 ], "CustomDeck": { "2944": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526952397/4E5EFF67DF19A78E70E62798BED649425CDF2767/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351626719/62AD1D8BDD8D735DB332F3418D253959A60B48D6/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2943": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526951495/40C680A5B60E91A430952F3EBF9E59F51138AAD3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187469723581883/FAA44353BEB42F2CFC579D81DB5CC628A60DEB57/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2942": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526950826/125BEEA21ED2655A992327B9182177E8547B9B16/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187469723577239/D91AFD99677466C8C3353C5C70B1338582FD8C8F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "5a9141", "Name": "CardCustom", "Transform": { "posX": -12.414691, "posY": 1.61241, "posZ": 0.130545869, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 0.0168389957, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 294400, "SidewaysCard": false, "CustomDeck": { "2944": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526952397/4E5EFF67DF19A78E70E62798BED649425CDF2767/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351626719/62AD1D8BDD8D735DB332F3418D253959A60B48D6/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3a4d7d", "Name": "CardCustom", "Transform": { "posX": -12.1974382, "posY": 1.691027, "posZ": 0.391228527, "rotX": 0.079880476, "rotY": 270.003082, "rotZ": 359.983154, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 294300, "SidewaysCard": false, "CustomDeck": { "2943": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526951495/40C680A5B60E91A430952F3EBF9E59F51138AAD3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187469723581883/FAA44353BEB42F2CFC579D81DB5CC628A60DEB57/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "674d67", "Name": "CardCustom", "Transform": { "posX": -12.451046, "posY": 1.67615223, "posZ": 0.2515647, "rotX": 359.9196, "rotY": 269.9892, "rotZ": 0.01781665, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 294200, "SidewaysCard": false, "CustomDeck": { "2942": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526950826/125BEEA21ED2655A992327B9182177E8547B9B16/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187469723577239/D91AFD99677466C8C3353C5C70B1338582FD8C8F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "53ccc2", "Name": "Deck", "Transform": { "posX": -2.688627, "posY": 1.61911678, "posZ": -5.048496, "rotX": 359.919739, "rotY": 270.0108, "rotZ": 0.0168220755, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 294700, 294600, 294500 ], "CustomDeck": { "2947": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526955113/6213CC62496D537C95C7A3046042D905994CDF4C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187469723667054/55F8F1684F9B1A89E972131E9F372EF7A93C1414/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2946": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526954462/A91D079BEE0B1D192A5F13C42DB2A0F6D9358B7A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351630910/FD380C6BDFD8A4B226A286C2446C7C8A0D18701B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2945": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526953727/B8E03F7B095FD4EEAE7E27FE3AC33AAB2478F0C1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752432660149498429/89E344C418C190946693EC24B082F7CC8A15BC89/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "fb0a0d", "Name": "CardCustom", "Transform": { "posX": -11.6247711, "posY": 1.61170363, "posZ": 1.4938544, "rotX": 359.919647, "rotY": 270.00415, "rotZ": 0.01652394, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 294700, "SidewaysCard": false, "CustomDeck": { "2947": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526955113/6213CC62496D537C95C7A3046042D905994CDF4C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187469723667054/55F8F1684F9B1A89E972131E9F372EF7A93C1414/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2cff52", "Name": "CardCustom", "Transform": { "posX": -11.686017, "posY": 1.641444, "posZ": 1.16697884, "rotX": 359.920624, "rotY": 269.9828, "rotZ": 0.01597644, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 294600, "SidewaysCard": false, "CustomDeck": { "2946": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526954462/A91D079BEE0B1D192A5F13C42DB2A0F6D9358B7A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351630910/FD380C6BDFD8A4B226A286C2446C7C8A0D18701B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4a542b", "Name": "CardCustom", "Transform": { "posX": -11.1213617, "posY": 1.674757, "posZ": 1.52931035, "rotX": 359.9193, "rotY": 269.9938, "rotZ": 0.0164454319, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 294500, "SidewaysCard": false, "CustomDeck": { "2945": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526953727/B8E03F7B095FD4EEAE7E27FE3AC33AAB2478F0C1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752432660149498429/89E344C418C190946693EC24B082F7CC8A15BC89/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "90edc4", "Name": "CardCustom", "Transform": { "posX": -3.95590043, "posY": 1.59753931, "posZ": -10.4412012, "rotX": 359.919769, "rotY": 269.9496, "rotZ": 0.0169078857, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 296600, "SidewaysCard": false, "CustomDeck": { "2966": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526956112/26EDF918BB33C88BB1FF6FD8CE915AF2CE746260/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526956305/D803CAD8A677FDC70CD7085C3AF687805DD94692/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "049c7b", "Name": "Deck", "Transform": { "posX": -17.1200275, "posY": 1.66442108, "posZ": 15.1900072, "rotX": 359.9201, "rotY": 270.024963, "rotZ": 180.0168, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 294000, 322200, 322300, 322400, 322500, 322600, 322700 ], "CustomDeck": { "2940": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526935385/FC2C2D22879EFC15B69E7F404481088CCAC96ADE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288525093/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3222": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526932146/2C0AABFEEE51DCA0359E574F4B020D499680CD2F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288525977/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3223": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526934652/FEE7887672626F7486A000D2F2626D9AC8AF4F70/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288528977/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3224": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526936100/B6B9F7B0865CD9EC76FCDE5CB90E6E4E1F3CF06C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288530094/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3225": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526934093/71634FE93029B4721B6391C9A42A2A6E6DDFEB81/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288524216/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3226": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526932751/C267480258635F6D9F121186CFB02373027DA840/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288527086/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3227": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526933369/77FFC6E892A9A66FED7F7EB809495AE11E8796A7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288528088/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "68eb84", "Name": "CardCustom", "Transform": { "posX": 6.34641075, "posY": 1.381718, "posZ": 65.0385, "rotX": 0.01479571, "rotY": 269.979675, "rotZ": 180.013123, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Steep Incline", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 294000, "SidewaysCard": false, "CustomDeck": { "2940": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526935385/FC2C2D22879EFC15B69E7F404481088CCAC96ADE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288525093/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "aa065b", "Name": "CardCustom", "Transform": { "posX": 6.33890343, "posY": 1.44249022, "posZ": 64.81257, "rotX": 0.020952886, "rotY": 269.976166, "rotZ": 183.98497, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Burning Thicket", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322200, "SidewaysCard": false, "CustomDeck": { "2935": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526932146/2C0AABFEEE51DCA0359E574F4B020D499680CD2F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288525977/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "57a3d6", "Name": "CardCustom", "Transform": { "posX": 6.920673, "posY": 1.39144409, "posZ": 64.74555, "rotX": 0.05834221, "rotY": 269.935852, "rotZ": 182.4821, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Misty Path", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322300, "SidewaysCard": false, "CustomDeck": { "2939": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526934652/FEE7887672626F7486A000D2F2626D9AC8AF4F70/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288528977/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6e2661", "Name": "CardCustom", "Transform": { "posX": 6.52722025, "posY": 1.35283923, "posZ": 64.66643, "rotX": 0.0210082922, "rotY": 270.005341, "rotZ": 180.015625, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Gorge", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322400, "SidewaysCard": false, "CustomDeck": { "2941": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526936100/B6B9F7B0865CD9EC76FCDE5CB90E6E4E1F3CF06C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288530094/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "59794a", "Name": "CardCustom", "Transform": { "posX": 6.20961666, "posY": 1.34312391, "posZ": 64.7209854, "rotX": 0.0200230349, "rotY": 269.999817, "rotZ": 180.016556, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Forest Graves", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322500, "SidewaysCard": false, "CustomDeck": { "2938": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526934093/71634FE93029B4721B6391C9A42A2A6E6DDFEB81/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288524216/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f84446", "Name": "CardCustom", "Transform": { "posX": 6.71953964, "posY": 1.30943716, "posZ": 65.03163, "rotX": 0.0213363133, "rotY": 269.9984, "rotZ": 180.018066, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fairies Clearing", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322600, "SidewaysCard": false, "CustomDeck": { "2936": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526932751/C267480258635F6D9F121186CFB02373027DA840/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288527086/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "77bfca", "Name": "CardCustom", "Transform": { "posX": 6.38965368, "posY": 1.27995431, "posZ": 64.96565, "rotX": 0.02081626, "rotY": 269.999237, "rotZ": 180.017136, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Forest Bog", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322700, "SidewaysCard": false, "CustomDeck": { "2937": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526933369/77FFC6E892A9A66FED7F7EB809495AE11E8796A7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288528088/FEE1BAD2376A2085E43A946EA2B9702046CD2F3D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "e791a7", "Name": "Deck", "Transform": { "posX": -17.1200066, "posY": 1.6440686, "posZ": 11.460001, "rotX": 359.9201, "rotY": 270.005768, "rotZ": 0.016832877, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 322800, 293300, 293200 ], "CustomDeck": { "3228": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526925836/51EA7AB41D73C55F73444788C88C0F9509C053D0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351672577/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2933": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526924979/5520ACDE83D393725B7B113A00B2021B9525B05B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351671608/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2932": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526924180/737CF6E107B8C3A996C01170EA7801A007C8D2C3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351670649/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "7d0d7b", "Name": "CardCustom", "Transform": { "posX": -17.1200123, "posY": 1.62230074, "posZ": 11.4600029, "rotX": 359.9201, "rotY": 270.005829, "rotZ": 0.0168315358, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322800, "SidewaysCard": false, "CustomDeck": { "2934": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526925836/51EA7AB41D73C55F73444788C88C0F9509C053D0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351672577/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "69787b", "Name": "CardCustom", "Transform": { "posX": -16.887764, "posY": 1.65717292, "posZ": 11.6014833, "rotX": 359.9201, "rotY": 269.988159, "rotZ": 0.0168566164, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 293300, "SidewaysCard": false, "CustomDeck": { "2933": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526924979/5520ACDE83D393725B7B113A00B2021B9525B05B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351671608/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c66567", "Name": "CardCustom", "Transform": { "posX": -17.0814838, "posY": 1.69120336, "posZ": 11.206399, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.01683935, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 293200, "SidewaysCard": false, "CustomDeck": { "2932": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526924180/737CF6E107B8C3A996C01170EA7801A007C8D2C3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351670649/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "0542dc", "Name": "Deck", "Transform": { "posX": -17.1200275, "posY": 1.64292538, "posZ": 7.57000542, "rotX": 359.9201, "rotY": 269.999878, "rotZ": 0.01684256, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 293100, 322900, 323000 ], "CustomDeck": { "2931": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526922339/EACEF0CDDBDED3C48166B80E1AEB85C578AFCE5D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3229": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526921770/77A820C3F27CD6B677C1DEFCA16C0A6D3537FED1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3230": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526918769/7731531FABE12118B6684FA565E70444BBBF47E8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "264b95", "Name": "CardCustom", "Transform": { "posX": -17.1200256, "posY": 1.62115753, "posZ": 7.570002, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 0.0168397631, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 293100, "SidewaysCard": false, "CustomDeck": { "2931": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526922339/EACEF0CDDBDED3C48166B80E1AEB85C578AFCE5D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a67efb", "Name": "CardCustom", "Transform": { "posX": -17.554121, "posY": 1.65666866, "posZ": 7.65918255, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.01683943, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322900, "SidewaysCard": false, "CustomDeck": { "2930": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526921770/77A820C3F27CD6B677C1DEFCA16C0A6D3537FED1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "97d38e", "Name": "CardCustom", "Transform": { "posX": -17.3842773, "posY": 1.69035947, "posZ": 7.713011, "rotX": 359.9201, "rotY": 270.005554, "rotZ": 0.0168321952, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323000, "SidewaysCard": false, "CustomDeck": { "2927": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526918769/7731531FABE12118B6684FA565E70444BBBF47E8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526919484/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "0834cb", "Name": "CardCustom", "Transform": { "posX": -17.1385, "posY": 1.61894977, "posZ": -0.0297996718, "rotX": 359.9201, "rotY": 270.0, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cave", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323100, "SidewaysCard": false, "CustomDeck": { "3231": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526909507/2B3384203FBC00C27BEC3475E974E1A10E2DB5C9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187469723704822/FE10F64BA452EBDCA770F4D128FE68821411AC93/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7234af", "Name": "Custom_Tile", "Transform": { "posX": -20.3983, "posY": 1.60986745, "posZ": -0.1081003, "rotX": 359.9201, "rotY": 270.012573, "rotZ": 0.0168504268, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "c115fa", "Name": "CardCustom", "Transform": { "posX": -23.6764, "posY": 1.62806642, "posZ": -0.0299998913, "rotX": 359.9201, "rotY": 270.0, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cave Entrance", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323200, "SidewaysCard": false, "CustomDeck": { "3232": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526910280/84989B63EA1AC0C44737CC67CD2D97BB9DA644D4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351639011/918E99A61661DEC999E4552AF8F54344013C04F5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -26.789, "posY": 1.61766648, "posZ": -3.89359975, "rotX": 0.02534649, "rotY": 29.9845276, "rotZ": 359.9224, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "0e7417", "Name": "Custom_Tile", "Transform": { "posX": -26.6533241, "posY": 1.61749959, "posZ": -3.81662035, "rotX": 359.955444, "rotY": 224.9801, "rotZ": 0.0683930144, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "133a8b", "Name": "Custom_Tile", "Transform": { "posX": -26.8949, "posY": 1.620144, "posZ": 4.0338006, "rotX": 359.945465, "rotY": 330.0066, "rotZ": 359.9392, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "482972", "Name": "Custom_Tile", "Transform": { "posX": -26.7397919, "posY": 1.619978, "posZ": 4.204301, "rotX": 359.945465, "rotY": 330.0062, "rotZ": 359.939178, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "48d03d", "Name": "Custom_Tile", "Transform": { "posX": -32.116, "posY": 1.62736118, "posZ": 3.81830049, "rotX": 0.00439250562, "rotY": 14.9844227, "rotZ": 359.918457, "scaleX": 1.25768793, "scaleY": 1.0, "scaleZ": 1.25768793 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.25768793, "scaleY": 1.0, "scaleZ": 1.25768793 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 1.00615036, "scaleY": 1.0, "scaleZ": 1.00615036 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "c5af38", "Name": "Custom_Tile", "Transform": { "posX": -32.2861, "posY": 1.62529933, "posZ": -4.00459957, "rotX": 359.963074, "rotY": 345.011475, "rotZ": 359.927155, "scaleX": 1.31135309, "scaleY": 1.0, "scaleZ": 1.31135309 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.31135309, "scaleY": 1.0, "scaleZ": 1.31135309 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 1.04908252, "scaleY": 1.0, "scaleZ": 1.04908252 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "0a8f4d", "Name": "Custom_Tile", "Transform": { "posX": -38.2720032, "posY": 1.63480985, "posZ": -0.0444998741, "rotX": 359.9201, "rotY": 270.026978, "rotZ": 0.0168147571, "scaleX": 1.3656503, "scaleY": 1.0, "scaleZ": 1.3656503 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.3656503, "scaleY": 1.0, "scaleZ": 1.3656503 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 1.09252024, "scaleY": 1.0, "scaleZ": 1.09252024 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "c4fcd2", "Name": "Custom_Tile", "Transform": { "posX": -40.3535, "posY": 1.63885689, "posZ": 3.85040116, "rotX": 359.9746, "rotY": 210.011475, "rotZ": 0.0776097551, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "2f8aae", "Name": "Custom_Tile", "Transform": { "posX": -40.443, "posY": 1.63905156, "posZ": 4.086964, "rotX": 0.0252770837, "rotY": 29.9342976, "rotZ": 359.922363, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "2c2af1", "Name": "Custom_Tile", "Transform": { "posX": -40.3572, "posY": 1.63651121, "posZ": -4.149, "rotX": 0.05455078, "rotY": 149.988419, "rotZ": 0.0608021058, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "e010ea", "Name": "Custom_Tile", "Transform": { "posX": -40.4194069, "posY": 1.63666952, "posZ": -3.90601969, "rotX": 359.945465, "rotY": 330.015717, "rotZ": 359.939178, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "7b4986", "Name": "Custom_Tile", "Transform": { "posX": -33.5396, "posY": 1.62597322, "posZ": -7.658101, "rotX": 0.0798931, "rotY": 89.9952, "rotZ": 359.983124, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "169f52", "Name": "Custom_Tile", "Transform": { "posX": -33.63278, "posY": 1.62611735, "posZ": -7.61012268, "rotX": 359.9201, "rotY": 270.0127, "rotZ": 0.0168545917, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "5166d6", "Name": "CardCustom", "Transform": { "posX": -36.7731, "posY": 1.644075, "posZ": -7.6988, "rotX": 359.9201, "rotY": 269.998, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Outside an Abandoned Hut", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323400, "SidewaysCard": false, "CustomDeck": { "3234": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526912654/1F781AEEBC0F1FEEC019EAF5B19DD84097EAFD44/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351641261/1089E0960A9C5168E6549F38A84D4B58D50EA7CC/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d9a437", "Name": "Custom_Tile", "Transform": { "posX": -36.7732, "posY": 1.62935042, "posZ": -11.51, "rotX": 359.9832, "rotY": 0.0122175375, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "bdf6ab", "Name": "CardCustom", "Transform": { "posX": -36.7619, "posY": 1.641831, "posZ": -15.2810011, "rotX": 359.9201, "rotY": 269.9978, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abandoned Hut", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323500, "SidewaysCard": false, "CustomDeck": { "3235": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526914019/A77CAAB49910C4982D198D0954F41D705442FC22/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187469723728954/0E9F146F8FC27096CB4D58BCA9D434A66FF9BEAA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0fde15", "Name": "Custom_Tile", "Transform": { "posX": -33.5169, "posY": 1.63044083, "posZ": 7.6511, "rotX": 359.9201, "rotY": 270.0099, "rotZ": 0.0168548319, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "1": { "GUID": "700551", "Name": "Custom_Tile", "Transform": { "posX": -33.5168533, "posY": 1.630441, "posZ": 7.6511445, "rotX": 359.9201, "rotY": 270.009979, "rotZ": 0.01685676, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "f0decc", "Name": "CardCustom", "Transform": { "posX": -36.7731, "posY": 1.64856243, "posZ": 7.57, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Road to Creek Bridge", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323300, "SidewaysCard": false, "CustomDeck": { "3233": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526915709/71FA5ED8CD0CD14A7D80FC08BD110312371002A9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351643531/33DF686CBC4171BF810F96B024F46469C1F1491B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "56bfbc", "Name": "Custom_Tile", "Transform": { "posX": -36.7731, "posY": 1.63610089, "posZ": 11.460001, "rotX": 359.9832, "rotY": 0.0206107572, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "ef8fdf", "Name": "CardCustom", "Transform": { "posX": -36.7732, "posY": 1.65080369, "posZ": 15.1956005, "rotX": 359.9201, "rotY": 269.9999, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "By the Creek", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 292600, "SidewaysCard": false, "CustomDeck": { "2926": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550854526916636/5EF24132BFA7B24D4F62E58D26D765E67609D4A5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187469723748776/A874B00FDCB913F874402BB90BE2CBC3AF7E924E/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ], "AttachedDecals": [ { "Transform": { "posX": -0.0021877822, "posY": -0.08963572, "posZ": -0.00288731651, "rotX": 270.0, "rotY": 359.869568, "rotZ": 0.0, "scaleX": 2.00000215, "scaleY": 2.00000238, "scaleZ": 2.00000262 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }, { "GUID": "4786a5", "Name": "Custom_Model_Bag", "Transform": { "posX": 9.078401, "posY": 1.473466, "posZ": 15.665801, "rotX": 359.920135, "rotY": 270.000366, "rotZ": 0.0168750379, "scaleX": 1.29821277, "scaleY": 0.2702163, "scaleZ": 1.42157257 }, "Nickname": "Caorthannach's Demands", "Description": "Celtic Rising - Scenario 1", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754685726010468016/1EF8555FBC6666F84B7F6F4B29B10EF654EBF96F/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CustomShader": { "SpecularColor": { "r": 1.0, "g": 1.0, "b": 1.0 }, "SpecularIntensity": 0.0, "SpecularSharpness": 2.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0d36e9\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6316,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":359.994,\"z\":359.9201}},\"268f4a\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7348,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9892,\"z\":0.0169}},\"716b60\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-30.2098,\"y\":1.6225,\"z\":-3.8369},\"rot\":{\"x\":359.9834,\"y\":0.1647,\"z\":359.92}},\"73c874\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6143,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0026,\"z\":0.0168}},\"882302\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3732},\"rot\":{\"x\":359.9197,\"y\":269.9749,\"z\":0.0169}},\"b1392f\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0076,\"z\":359.92}},\"b8f8dc\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9998,\"z\":0.0687}},\"bedb9b\":{\"lock\":false,\"pos\":{\"x\":-30.2245,\"y\":1.6247,\"z\":3.8599},\"rot\":{\"x\":359.9832,\"y\":359.9879,\"z\":359.92}},\"ca33f2\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6349,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"f0a8cf\":{\"lock\":false,\"pos\":{\"x\":-33.4378,\"y\":1.6281,\"z\":-0.0587},\"rot\":{\"x\":359.9201,\"y\":270.0101,\"z\":0.0169}},\"f40cfa\":{\"lock\":false,\"pos\":{\"x\":-27.3778,\"y\":1.6196,\"z\":0.0454},\"rot\":{\"x\":359.9201,\"y\":269.9913,\"z\":0.0169}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "0d36e9", "Name": "Custom_Tile", "Transform": { "posX": -36.7732, "posY": 1.63160741, "posZ": -3.83000064, "rotX": 359.983154, "rotY": 359.994019, "rotZ": 359.920074, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "268f4a", "Name": "Deck", "Transform": { "posX": -3.927706, "posY": 1.73475075, "posZ": 5.75710154, "rotX": 359.919739, "rotY": 269.989166, "rotZ": 0.0168609843, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 291300, 291200, 291700, 291600, 291500, 291400, 291100, 291000, 290900, 290800, 290700, 290600, 321600, 321700, 289400, 289300, 321800, 289100, 289000, 321900, 322000, 322100, 322200, 322300, 322400, 322500 ], "CustomDeck": { "2913": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762681984/25E6A38EE92C7405061DCF43C65FE697ABAC19B9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833258347/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2912": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762681464/F8D1F53FE9AAF9C921A7A9B478BD6DF93369BB15/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833258347/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2917": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762684049/BDDC287C78837633E90E67CF4C3387B2C00FA541/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833257495/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2916": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762683592/B2649FDCCAE62A43A9BBF9C8B8958913AAA2B93C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833257495/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2915": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762683045/7A48C60C5BCBC8A9C833DAB04463D71E8ABC5BA1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833256787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2914": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762682625/F1F0B826C345C9517CEA0E8AA45151822C5C5126/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833256787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2911": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678997/2FFD464BE85B3C06E492DE79841B2004920CB315/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678551/9BF0D765FC571B006FF6BD776A4EC1DE2BEE0FD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2909": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678147/E425D57C815C44B898C503C81B0E55A27175245B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675844/0BD158D07C53E6277273DB0E6976DF7108423B9F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2907": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675209/71C4DAB750F419D6DA2008B745AF43C6868F2A82/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2906": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762674772/09067380449F84FD40C4A54944E9627E7DB76AD6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3216": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320953115/9B5C242C1AD0FB13669914D6F51C4A6CE73C38B7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287318477/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3217": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320952134/68E1B5E9006C0F6962EBF6E601FC7CC984F3D0DD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287318477/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2894": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320949172/937675CA44D4976F75D72D8806552101E67C85BE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351547176/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2893": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320948545/AE32CCD92F84FCCCC7F4994AE7288EBDFEC91303/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351547176/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3218": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320947255/027CDC63CDA233229447567E9BC0BF3E4B2796E3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351545835/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2891": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320946696/B0D3B76085B03D9440F382F52C9F57E2843E7DD4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351545835/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2890": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320945324/363F1FB133D7E6AA467EC424BFDB68D6C22BD2E3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351539292/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3219": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320944148/C6BC455C40857943198C7EEF47C9451706C51C2E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351537813/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3220": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320943506/2D644660ED550DBFC1D05CC815B0E3CDACAB5E33/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351537813/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3221": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320941614/9652B03EFE29E08C712A222CA85B7EA03C15B5F0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586025189/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3222": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320939892/5AA438D22574A7BA23C22CFD2FA596ED5E3184A5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586025189/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3223": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320938851/1EA4A97375B943322F95B3BE96CD514D54D0B11D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586025189/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3224": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320938149/2F2B8C31A124220AB3AD1E6530CC2C6F1483693C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586025189/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3225": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320934900/380F5EE17F081815D43E3602037FDCD583769281/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586025189/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "47a281", "Name": "CardCustom", "Transform": { "posX": -20.441431, "posY": 1.6268971, "posZ": 11.4513321, "rotX": 359.9204, "rotY": 269.9978, "rotZ": 0.0146393832, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291300, "SidewaysCard": false, "CustomDeck": { "2913": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762681984/25E6A38EE92C7405061DCF43C65FE697ABAC19B9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833258347/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "475236", "Name": "CardCustom", "Transform": { "posX": -17.1199932, "posY": 1.62230074, "posZ": 11.4599981, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168430619, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291200, "SidewaysCard": false, "CustomDeck": { "2912": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762681464/F8D1F53FE9AAF9C921A7A9B478BD6DF93369BB15/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833258347/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9112ca", "Name": "CardCustom", "Transform": { "posX": -20.203167, "posY": 1.62438321, "posZ": 3.9204762, "rotX": 359.920135, "rotY": 269.988678, "rotZ": 0.0167713873, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291700, "SidewaysCard": false, "CustomDeck": { "2917": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762684049/BDDC287C78837633E90E67CF4C3387B2C00FA541/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833257495/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a0d644", "Name": "CardCustom", "Transform": { "posX": -20.1409988, "posY": 1.65400577, "posZ": 3.97658, "rotX": 359.9198, "rotY": 269.997375, "rotZ": 0.0154327229, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291600, "SidewaysCard": false, "CustomDeck": { "2916": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762683592/B2649FDCCAE62A43A9BBF9C8B8958913AAA2B93C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833257495/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a207c0", "Name": "CardCustom", "Transform": { "posX": -19.9715843, "posY": 1.6877687, "posZ": 4.205989, "rotX": 359.923, "rotY": 269.9793, "rotZ": 0.0189715512, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291500, "SidewaysCard": false, "CustomDeck": { "2915": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762683045/7A48C60C5BCBC8A9C833DAB04463D71E8ABC5BA1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833256787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7cfb69", "Name": "CardCustom", "Transform": { "posX": -20.3037777, "posY": 1.697735, "posZ": 3.96401334, "rotX": 359.922455, "rotY": 270.008636, "rotZ": 0.0197817571, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291400, "SidewaysCard": false, "CustomDeck": { "2914": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762682625/F1F0B826C345C9517CEA0E8AA45151822C5C5126/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809091833256787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0d2fa", "Name": "CardCustom", "Transform": { "posX": -17.1199932, "posY": 1.62006712, "posZ": 3.85999751, "rotX": 359.9201, "rotY": 269.9976, "rotZ": 0.0168430153, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291100, "SidewaysCard": false, "CustomDeck": { "2911": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678997/2FFD464BE85B3C06E492DE79841B2004920CB315/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e954bb", "Name": "CardCustom", "Transform": { "posX": -16.8623829, "posY": 1.65489781, "posZ": 3.8260293, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168433338, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291000, "SidewaysCard": false, "CustomDeck": { "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678551/9BF0D765FC571B006FF6BD776A4EC1DE2BEE0FD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9340b8", "Name": "CardCustom", "Transform": { "posX": -17.0704746, "posY": 1.68896, "posZ": 3.87464452, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168435778, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290900, "SidewaysCard": false, "CustomDeck": { "2909": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762678147/E425D57C815C44B898C503C81B0E55A27175245B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287467540/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4a96c6", "Name": "CardCustom", "Transform": { "posX": -17.1200123, "posY": 1.62006724, "posZ": 3.86000156, "rotX": 359.9201, "rotY": 269.9975, "rotZ": 0.01684315, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290800, "SidewaysCard": false, "CustomDeck": { "2908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675844/0BD158D07C53E6277273DB0E6976DF7108423B9F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "22291d", "Name": "CardCustom", "Transform": { "posX": -17.1859512, "posY": 1.65514553, "posZ": 3.68097734, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168435723, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290700, "SidewaysCard": false, "CustomDeck": { "2907": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675209/71C4DAB750F419D6DA2008B745AF43C6868F2A82/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f074a8", "Name": "CardCustom", "Transform": { "posX": -17.01297, "posY": 1.68891919, "posZ": 3.85620785, "rotX": 359.9201, "rotY": 269.9975, "rotZ": 0.0168434177, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290600, "SidewaysCard": false, "CustomDeck": { "2906": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762674772/09067380449F84FD40C4A54944E9627E7DB76AD6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "500128", "Name": "CardCustom", "Transform": { "posX": -17.11999, "posY": 1.6189239, "posZ": -0.0300033558, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168430265, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321600, "SidewaysCard": false, "CustomDeck": { "2896": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320953115/9B5C242C1AD0FB13669914D6F51C4A6CE73C38B7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287318477/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "800004", "Name": "CardCustom", "Transform": { "posX": -17.1199932, "posY": 1.62006712, "posZ": 3.85999751, "rotX": 359.9201, "rotY": 269.997528, "rotZ": 0.0168430116, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321700, "SidewaysCard": false, "CustomDeck": { "2895": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320952134/68E1B5E9006C0F6962EBF6E601FC7CC984F3D0DD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287318477/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5bf0e9", "Name": "CardCustom", "Transform": { "posX": -17.1200085, "posY": 1.62115753, "posZ": 7.569998, "rotX": 359.9201, "rotY": 269.9978, "rotZ": 0.0168427657, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 289400, "SidewaysCard": false, "CustomDeck": { "2894": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320949172/937675CA44D4976F75D72D8806552101E67C85BE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351547176/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ceefab", "Name": "CardCustom", "Transform": { "posX": -17.11999, "posY": 1.62230074, "posZ": 11.4599981, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.01684305, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 289300, "SidewaysCard": false, "CustomDeck": { "2893": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320948545/AE32CCD92F84FCCCC7F4994AE7288EBDFEC91303/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351547176/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2e29a3", "Name": "CardCustom", "Transform": { "posX": -17.1199932, "posY": 1.61780715, "posZ": -3.83000326, "rotX": 359.9201, "rotY": 269.997681, "rotZ": 0.0168427974, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321800, "SidewaysCard": false, "CustomDeck": { "2892": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320947255/027CDC63CDA233229447567E9BC0BF3E4B2796E3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351545835/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f07975", "Name": "CardCustom", "Transform": { "posX": -17.1200066, "posY": 1.618924, "posZ": -0.0299988687, "rotX": 359.9201, "rotY": 270.009949, "rotZ": 0.0168255325, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 289100, "SidewaysCard": false, "CustomDeck": { "2891": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320946696/B0D3B76085B03D9440F382F52C9F57E2843E7DD4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351545835/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4d37e3", "Name": "CardCustom", "Transform": { "posX": -17.1199932, "posY": 1.62006712, "posZ": 3.859997, "rotX": 359.9201, "rotY": 269.9976, "rotZ": 0.0168429911, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 289000, "SidewaysCard": false, "CustomDeck": { "2890": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320945324/363F1FB133D7E6AA467EC424BFDB68D6C22BD2E3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351539292/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8b3d55", "Name": "CardCustom", "Transform": { "posX": -17.1200066, "posY": 1.62115753, "posZ": 7.569998, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168430377, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 321900, "SidewaysCard": false, "CustomDeck": { "2889": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320944148/C6BC455C40857943198C7EEF47C9451706C51C2E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351537813/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0d030d", "Name": "CardCustom", "Transform": { "posX": -17.1199913, "posY": 1.62230074, "posZ": 11.4599981, "rotX": 359.9201, "rotY": 269.99762, "rotZ": 0.01684294, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322000, "SidewaysCard": false, "CustomDeck": { "2888": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320943506/2D644660ED550DBFC1D05CC815B0E3CDACAB5E33/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627351537813/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "45da94", "Name": "CardCustom", "Transform": { "posX": -26.8162918, "posY": 1.63695562, "posZ": 15.3661547, "rotX": 359.920746, "rotY": 270.0025, "rotZ": 0.0155843161, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322100, "SidewaysCard": false, "CustomDeck": { "2887": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320941614/9652B03EFE29E08C712A222CA85B7EA03C15B5F0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586025189/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "793c77", "Name": "CardCustom", "Transform": { "posX": -26.7772713, "posY": 1.66660154, "posZ": 15.4457254, "rotX": 359.924255, "rotY": 269.960724, "rotZ": 0.0163278673, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322200, "SidewaysCard": false, "CustomDeck": { "2885": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320939892/5AA438D22574A7BA23C22CFD2FA596ED5E3184A5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586025189/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0643d0", "Name": "CardCustom", "Transform": { "posX": -27.39378, "posY": 1.7013526, "posZ": 15.5895109, "rotX": 359.919678, "rotY": 269.9975, "rotZ": 0.0165157672, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322300, "SidewaysCard": false, "CustomDeck": { "2886": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320938851/1EA4A97375B943322F95B3BE96CD514D54D0B11D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586025189/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "82ac54", "Name": "CardCustom", "Transform": { "posX": -26.80405, "posY": 1.710056, "posZ": 14.8786936, "rotX": 359.9205, "rotY": 269.996735, "rotZ": 0.0168329533, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322400, "SidewaysCard": false, "CustomDeck": { "2883": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320938149/2F2B8C31A124220AB3AD1E6530CC2C6F1483693C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586025189/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "986264", "Name": "CardCustom", "Transform": { "posX": -26.3953819, "posY": 1.71924984, "posZ": 15.0129089, "rotX": 359.923737, "rotY": 269.997864, "rotZ": 0.0148333581, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322500, "SidewaysCard": false, "CustomDeck": { "2882": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320934900/380F5EE17F081815D43E3602037FDCD583769281/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586025189/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "716b60", "Name": "CardCustom", "Transform": { "posX": -3.95600057, "posY": 1.59753942, "posZ": -10.4412012, "rotX": 359.919739, "rotY": 269.9998, "rotZ": 0.01683748, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 288100, "SidewaysCard": false, "CustomDeck": { "2881": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320931550/716B03FF62B55CC5CE40BC92DCD50CBD0C9CCB0A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320931704/127E0E8899A69E413206850B7FE8FF5A7367639F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7234af", "Name": "Custom_Tile", "Transform": { "posX": -30.2098, "posY": 1.62245321, "posZ": -3.83689976, "rotX": 359.9834, "rotY": 0.164755836, "rotZ": 359.92, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "73c874", "Name": "Deck", "Transform": { "posX": -2.688527, "posY": 1.61430264, "posZ": -5.04849529, "rotX": 359.919739, "rotY": 270.0026, "rotZ": 0.016833391, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 322900, 287900 ], "CustomDeck": { "3229": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320929601/8B20A9AC6E8757836BCB015007459A604AA921F6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726008998918/F4CD3918242797BAF32B84609F6E63C0B22806CD/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2879": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320928748/72A3B7C9EE412894AA393B8C753B28CC8BBB83AC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320928980/A98BA3C62A9558C0DB91645F677433BD0C445FD1/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9fc6b7", "Name": "CardCustom", "Transform": { "posX": -2.688529, "posY": 1.59734869, "posZ": -5.0485363, "rotX": 359.919739, "rotY": 270.002563, "rotZ": 0.0168328043, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322900, "SidewaysCard": false, "CustomDeck": { "2880": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320929601/8B20A9AC6E8757836BCB015007459A604AA921F6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726008998918/F4CD3918242797BAF32B84609F6E63C0B22806CD/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "77a87f", "Name": "CardCustom", "Transform": { "posX": -2.47147822, "posY": 1.69242024, "posZ": -5.35992336, "rotX": 0.07942515, "rotY": 270.001648, "rotZ": 1.18378437, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 287900, "SidewaysCard": false, "CustomDeck": { "2879": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320928748/72A3B7C9EE412894AA393B8C753B28CC8BBB83AC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320928980/A98BA3C62A9558C0DB91645F677433BD0C445FD1/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "882302", "Name": "Deck", "Transform": { "posX": -2.724705, "posY": 1.62076044, "posZ": 0.373200864, "rotX": 359.919739, "rotY": 269.974945, "rotZ": 0.0168720074, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 322600, 322700, 322800 ], "CustomDeck": { "3226": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320925402/C892A0201E5A8B4EF434425EF93DFA70AF4E20A5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726008995474/736FAA88381C060C2E154D914397A872363E039F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3227": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320924578/12CB0C5631F6056949A3D4E02785559D82A98577/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187287024862032/9CD9AF3C384C47ADFBFC43F3C8A9B87EE5309E69/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3228": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320923665/744E0ED499073757E818367DEA0FDADDE05A1E7B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809557571673022/7303506CBAE207EB86DCC13FFE9F7EBA697CAE43/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4bf07e", "Name": "CardCustom", "Transform": { "posX": -2.72472477, "posY": 1.59899259, "posZ": 0.373264879, "rotX": 359.919739, "rotY": 269.973816, "rotZ": 0.016873043, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322600, "SidewaysCard": false, "CustomDeck": { "2878": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320925402/C892A0201E5A8B4EF434425EF93DFA70AF4E20A5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726008995474/736FAA88381C060C2E154D914397A872363E039F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "de64c5", "Name": "CardCustom", "Transform": { "posX": -2.59544539, "posY": 1.71619964, "posZ": -0.062921524, "rotX": 0.07983192, "rotY": 270.0032, "rotZ": 2.28218055, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322700, "SidewaysCard": false, "CustomDeck": { "2877": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320924578/12CB0C5631F6056949A3D4E02785559D82A98577/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187287024862032/9CD9AF3C384C47ADFBFC43F3C8A9B87EE5309E69/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c41b5a", "Name": "CardCustom", "Transform": { "posX": -2.724927, "posY": 2.03027916, "posZ": 0.373067379, "rotX": 357.066956, "rotY": 269.605438, "rotZ": 7.741194, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 322800, "SidewaysCard": false, "CustomDeck": { "2876": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320923665/744E0ED499073757E818367DEA0FDADDE05A1E7B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809557571673022/7303506CBAE207EB86DCC13FFE9F7EBA697CAE43/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "b1392f", "Name": "Custom_Tile", "Transform": { "posX": -36.7731, "posY": 1.63386762, "posZ": 3.86000013, "rotX": 359.9832, "rotY": 0.007645674, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "b8f8dc", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69640183, "posY": 1.5583179, "posZ": 14.2788048, "rotX": 359.955139, "rotY": 224.9998, "rotZ": 0.06867169, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.09341396, "g": 0.0213945229, "b": 0.6463414 }, "LayoutGroupSortIndex": 0, "Value": 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": "e265df", "Name": "CardCustom", "Transform": { "posX": 17.2348, "posY": 1.94712412, "posZ": 4.684284, "rotX": 359.920135, "rotY": 269.999237, "rotZ": 0.0168753043, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lil'Joe", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324400, "SidewaysCard": false, "CustomDeck": { "3244": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858307836340152697/6C30164C7F781C2126B92793F0678F9E8E3F4B54/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287343135/94AEF1178557E194D20F9C85918FCF89B04FCC7A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c4f135", "Name": "Custom_Tile", "Transform": { "posX": 21.8840485, "posY": 1.465394, "posZ": 9.295149, "rotX": 359.9203, "rotY": 269.999329, "rotZ": 0.0176919065, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/ttnspKt.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "31adff", "Name": "CardCustom", "Transform": { "posX": 21.6546936, "posY": 1.48108792, "posZ": 10.2695446, "rotX": 359.920135, "rotY": 270.003082, "rotZ": 0.0168690663, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cursed Coral Axe", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324300, "SidewaysCard": false, "CustomDeck": { "3243": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320981482/75C7D20BE9A465790D28036FA6E0F25D5F0288E2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1752432660149546279/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a4873a", "Name": "Deck", "Transform": { "posX": 10.4703512, "posY": 1.720263, "posZ": -32.0443726, "rotX": 359.983246, "rotY": 269.999817, "rotZ": 0.00352996751, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Burnt Air", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 323200, 290300, 323300, 323100, 290200, 323400 ], "CustomDeck": { "3232": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827125507/A0FAAABEA3D0E58BF95E43E6B9BA634DB8B1AE80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287463754/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2903": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762665674/271804598A3B68F85E066CE2738D1A0D757C5E9C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287464736/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3233": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827126743/4777E29D1EB87E538C2E24C29ADA529A9CBA0595/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287465679/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3231": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827124927/25BDA44A853F2AA3447B11C58532A4A068BE658B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287463754/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2902": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762665150/CF0B9174981ACCCD5024630BF6C7D13A627CD0FE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287464736/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3234": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827127518/24B5C03DCF49ABA6A83996F55B3F77C32D0B947B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287465679/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4ec16a", "Name": "CardCustom", "Transform": { "posX": -17.2352848, "posY": 1.70609462, "posZ": -3.720521, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 0.0168397669, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323200, "SidewaysCard": false, "CustomDeck": { "3232": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827125507/A0FAAABEA3D0E58BF95E43E6B9BA634DB8B1AE80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287463754/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9d8114", "Name": "CardCustom", "Transform": { "posX": -17.5906639, "posY": 1.68698967, "posZ": -4.49607325, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.01683999, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290300, "SidewaysCard": false, "CustomDeck": { "2903": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762665674/271804598A3B68F85E066CE2738D1A0D757C5E9C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287464736/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8af4d5", "Name": "CardCustom", "Transform": { "posX": -17.0738831, "posY": 1.65301383, "posZ": -3.41373634, "rotX": 359.9201, "rotY": 269.999725, "rotZ": 0.016840104, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323300, "SidewaysCard": false, "CustomDeck": { "3233": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827126743/4777E29D1EB87E538C2E24C29ADA529A9CBA0595/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287465679/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "824284", "Name": "CardCustom", "Transform": { "posX": -17.6414928, "posY": 1.71616971, "posZ": -4.05751133, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.01683986, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323100, "SidewaysCard": false, "CustomDeck": { "3231": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827124927/25BDA44A853F2AA3447B11C58532A4A068BE658B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287463754/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7310a7", "Name": "CardCustom", "Transform": { "posX": -17.48553, "posY": 1.69670093, "posZ": -3.490716, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.0168408, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290200, "SidewaysCard": false, "CustomDeck": { "2902": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762665150/CF0B9174981ACCCD5024630BF6C7D13A627CD0FE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287464736/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "92c8f2", "Name": "CardCustom", "Transform": { "posX": -17.1200161, "posY": 1.61780715, "posZ": -3.829999, "rotX": 359.9201, "rotY": 269.9991, "rotZ": 0.01684091, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323400, "SidewaysCard": false, "CustomDeck": { "3234": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1858308999827127518/24B5C03DCF49ABA6A83996F55B3F77C32D0B947B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287465679/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "385358", "Name": "Deck", "Transform": { "posX": 21.3929558, "posY": 1.96634126, "posZ": 8.902921, "rotX": 359.920135, "rotY": 270.003, "rotZ": 0.0168699734, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sailors", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 324100, 324200, 291800, 291900 ], "CustomDeck": { "3241": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320958273/9162F49F7EA85498258791B5F560CBDD7DF88DB6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320958502/92DA17E88140B783BCBEAB72CF71F4CDF809FA1D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3242": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320959347/EE83CF3BE261013D66854D50973A20C1904C47A1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320959652/13459B21F3A443CC2FECCFFF41F7DD77BBFAC5AF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2918": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320961343/7609633A88106D90BB87444BA2E3DB961CF93C11/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320961545/B4C45E54682D88C49962BAC64F191B4416632E27/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2919": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320960425/E9DB4A64E0811C9ABAAA34D5AEB48078BF5F9264/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320960640/D9CDC4447449BA0F5AFED3867BF54457197466A2/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "6afeda", "Name": "CardCustom", "Transform": { "posX": -23.6765137, "posY": 1.63253963, "posZ": 15.189991, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.0168396, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324100, "SidewaysCard": false, "CustomDeck": { "2909": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320958273/9162F49F7EA85498258791B5F560CBDD7DF88DB6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320958502/92DA17E88140B783BCBEAB72CF71F4CDF809FA1D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2386cb", "Name": "CardCustom", "Transform": { "posX": -23.6765289, "posY": 1.63144338, "posZ": 11.4600019, "rotX": 359.9201, "rotY": 269.974, "rotZ": 0.0168758743, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324200, "SidewaysCard": false, "CustomDeck": { "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320959347/EE83CF3BE261013D66854D50973A20C1904C47A1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320959652/13459B21F3A443CC2FECCFFF41F7DD77BBFAC5AF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e7f498", "Name": "CardCustom", "Transform": { "posX": -23.67653, "posY": 1.62920988, "posZ": 3.860002, "rotX": 359.9201, "rotY": 269.999268, "rotZ": 0.0168407336, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291800, "SidewaysCard": false, "CustomDeck": { "2912": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320961343/7609633A88106D90BB87444BA2E3DB961CF93C11/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320961545/B4C45E54682D88C49962BAC64F191B4416632E27/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "764c1c", "Name": "CardCustom", "Transform": { "posX": -23.6135, "posY": 1.664135, "posZ": 3.50652075, "rotX": 359.9201, "rotY": 269.975464, "rotZ": 0.0168742929, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 291900, "SidewaysCard": false, "CustomDeck": { "2911": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320960425/E9DB4A64E0811C9ABAAA34D5AEB48078BF5F9264/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320960640/D9CDC4447449BA0F5AFED3867BF54457197466A2/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "9d23bb", "Name": "Deck", "Transform": { "posX": 22.01411, "posY": 1.51531136, "posZ": 9.374653, "rotX": 359.920319, "rotY": 269.999329, "rotZ": 180.017731, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Set Aside Locations", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 323500, 323600, 323700, 323800, 323900, 324000 ], "CustomDeck": { "3235": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320963425/9D5153DDE16B417769C957CFBA29AC1606C52363/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187287024880919/4C35C5DEDEA88157336EAD71A2C8F3F8D88A8068/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3236": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320966720/271D4701EBD2A484FFAFD3D9B97C66E5E662C68D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586013565/F9942D99D5D2784EB8B4E67206264D2F2A24E595/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3237": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320964635/80AAD644D54304FEB2695FCE1A47119D6432EF90/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726009006573/3361D31E4D59BCDEBDC20C040306DF6D637C0877/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3238": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320967602/8FEDFE9EFF1A911D40DB6AFAF224D6883AA1D9D4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726009008256/C36291329DFB4D75BA0B88F601984BAEB152B104/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3239": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320965616/58EF20A94740B2695D75005BD07F27CB3BEC764E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726009009897/AE2F9AAE9C26BE4FFEC03147A610E35E1747E05A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3240": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320968738/CB94146C2D76933E99E138AD9E777A2C302897A3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586016675/AEAD62D3C3A79F8714642893C79615B327B82B92/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "657efd", "Name": "CardCustom", "Transform": { "posX": -24.10772, "posY": 1.725233, "posZ": -3.58311772, "rotX": 359.9201, "rotY": 270.000153, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Stormy Sea", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323500, "SidewaysCard": false, "CustomDeck": { "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320963425/9D5153DDE16B417769C957CFBA29AC1606C52363/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1750187287024880919/4C35C5DEDEA88157336EAD71A2C8F3F8D88A8068/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f6d837", "Name": "CardCustom", "Transform": { "posX": -23.7254238, "posY": 1.71520114, "posZ": -4.250997, "rotX": 359.9201, "rotY": 270.002, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Forecastle Deck Mast", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323600, "SidewaysCard": false, "CustomDeck": { "2913": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320966720/271D4701EBD2A484FFAFD3D9B97C66E5E662C68D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586013565/F9942D99D5D2784EB8B4E67206264D2F2A24E595/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8ab9d5", "Name": "CardCustom", "Transform": { "posX": -23.5622063, "posY": 1.70543325, "posZ": -3.991839, "rotX": 359.9201, "rotY": 270.002625, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Slippery Deck", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323700, "SidewaysCard": false, "CustomDeck": { "2911": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320964635/80AAD644D54304FEB2695FCE1A47119D6432EF90/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726009006573/3361D31E4D59BCDEBDC20C040306DF6D637C0877/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1016ac", "Name": "CardCustom", "Transform": { "posX": -23.8670788, "posY": 1.69608462, "posZ": -3.62021136, "rotX": 359.9201, "rotY": 270.000153, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Forecastle", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323800, "SidewaysCard": false, "CustomDeck": { "2914": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320967602/8FEDFE9EFF1A911D40DB6AFAF224D6883AA1D9D4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726009008256/C36291329DFB4D75BA0B88F601984BAEB152B104/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3b6abd", "Name": "CardCustom", "Transform": { "posX": -23.7747326, "posY": 1.66206014, "posZ": -4.088117, "rotX": 359.9201, "rotY": 270.000183, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hold", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323900, "SidewaysCard": false, "CustomDeck": { "2912": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320965616/58EF20A94740B2695D75005BD07F27CB3BEC764E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726009009897/AE2F9AAE9C26BE4FFEC03147A610E35E1747E05A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ad135e", "Name": "CardCustom", "Transform": { "posX": -23.6766338, "posY": 1.62695169, "posZ": -3.82419, "rotX": 359.9201, "rotY": 270.000122, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Keel", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324000, "SidewaysCard": false, "CustomDeck": { "2915": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320968738/CB94146C2D76933E99E138AD9E777A2C302897A3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717589586016675/AEAD62D3C3A79F8714642893C79615B327B82B92/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "713bd2", "Name": "Deck", "Transform": { "posX": 21.7861118, "posY": 1.96601176, "posZ": 9.205751, "rotX": 359.920319, "rotY": 270.003021, "rotZ": 0.0177238956, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Set-aside Treacheries", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 323100, 323200, 323300, 323400 ], "CustomDeck": { "3231": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320980417/3883ADC39EB8480A629980A9500A36C02ECDC656/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287326510/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3232": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320979534/2380C2D40BA06B1583C36033C88BBD83325EF871/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287325405/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3233": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320978639/535A0A5A6F6BFE27BB1FEB5A711075A3FD2CCCB3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287319717/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3234": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320978000/6A8ED48467364E5053906F6C9EE9406F3C48A77D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287319717/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "08b0c0", "Name": "CardCustom", "Transform": { "posX": -17.1200352, "posY": 1.61780715, "posZ": -3.82999539, "rotX": 359.9201, "rotY": 270.00293, "rotZ": 0.0168356169, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323100, "SidewaysCard": false, "CustomDeck": { "2913": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320980417/3883ADC39EB8480A629980A9500A36C02ECDC656/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287326510/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "463481", "Name": "CardCustom", "Transform": { "posX": -17.1050282, "posY": 1.65280426, "posZ": -3.94976115, "rotX": 359.9201, "rotY": 270.003021, "rotZ": 0.0168365967, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323200, "SidewaysCard": false, "CustomDeck": { "2912": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320979534/2380C2D40BA06B1583C36033C88BBD83325EF871/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287325405/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3f27b3", "Name": "CardCustom", "Transform": { "posX": -17.12002, "posY": 1.62006724, "posZ": 3.86000419, "rotX": 359.9203, "rotY": 269.386627, "rotZ": 0.017693596, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323300, "SidewaysCard": false, "CustomDeck": { "2911": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320978639/535A0A5A6F6BFE27BB1FEB5A711075A3FD2CCCB3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287319717/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1882ba", "Name": "CardCustom", "Transform": { "posX": -17.1453018, "posY": 1.65517616, "posZ": 4.20940828, "rotX": 359.9201, "rotY": 269.99823, "rotZ": 0.0168423653, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323400, "SidewaysCard": false, "CustomDeck": { "2910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320978000/6A8ED48467364E5053906F6C9EE9406F3C48A77D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287319717/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "bedb9b", "Name": "Custom_Tile", "Transform": { "posX": -30.2245, "posY": 1.62473571, "posZ": 3.85990024, "rotX": 359.983154, "rotY": 359.987885, "rotZ": 359.920074, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "ca33f2", "Name": "CardCustom", "Transform": { "posX": -30.2243, "posY": 1.63494289, "posZ": -7.7, "rotX": 359.9201, "rotY": 270.0, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ship's Stern", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323000, "SidewaysCard": false, "CustomDeck": { "3230": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1860550760320922095/58C7E77D0BC9C10CAAD821D8EB18726A0D3B189A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1754685726009001748/ED48B13A868E9F079088800DAE04440607F84BEB/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f0a8cf", "Name": "Custom_Tile", "Transform": { "posX": -33.4378, "posY": 1.62806475, "posZ": -0.0587002933, "rotX": 359.9201, "rotY": 270.0101, "rotZ": 0.0168534443, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "f40cfa", "Name": "Custom_Tile", "Transform": { "posX": -27.3778, "posY": 1.619645, "posZ": 0.0453997366, "rotX": 359.9201, "rotY": 269.9913, "rotZ": 0.0168795679, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } } ], "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 } } ] }, { "GUID": "55bcca", "Name": "Custom_Model_Bag", "Transform": { "posX": 9.060601, "posY": 1.4679091, "posZ": -3.28980041, "rotX": 359.920135, "rotY": 269.9999, "rotZ": 0.0168755446, "scaleX": 1.29821277, "scaleY": 0.2702163, "scaleZ": 1.42157257 }, "Nickname": "Flight From The Dullahan", "Description": "Celtic Rising - Scenario 4", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754685726010477183/E66A59DD3A86C4B24E9764FA7422CD9F10D2BCA4/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CustomShader": { "SpecularColor": { "r": 1.0, "g": 1.0, "b": 1.0 }, "SpecularIntensity": 0.0, "SpecularSharpness": 2.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"09928d\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6441,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":180.0168}},\"0ef6ec\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"11e13e\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"1f520a\":{\"lock\":false,\"pos\":{\"x\":-20.2392,\"y\":1.6714,\"z\":7.6044},\"rot\":{\"x\":359.9201,\"y\":270.0247,\"z\":0.0168}},\"24f153\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6452,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"44d448\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":359.952,\"z\":359.9201}},\"4aebff\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6201,\"z\":3.8597},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"5d1126\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6429,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":180.0168}},\"65add3\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6508,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"778290\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9997,\"z\":0.0687}},\"84b438\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.002,\"z\":0.0168}},\"9ec43a\":{\"lock\":false,\"pos\":{\"x\":-20.3266,\"y\":1.6737,\"z\":15.2448},\"rot\":{\"x\":359.9201,\"y\":269.9957,\"z\":0.0168}},\"af7308\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6316,\"z\":-3.83},\"rot\":{\"x\":359.9834,\"y\":0.1839,\"z\":359.92}},\"bbdf82\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0032,\"z\":0.0168}},\"d461af\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7011,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0097,\"z\":0.0168}},\"d91326\":{\"lock\":false,\"pos\":{\"x\":-20.2951,\"y\":1.6726,\"z\":11.4448},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"dd6788\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.64,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9841,\"z\":0.0169}},\"f3fb66\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6361,\"z\":11.46},\"rot\":{\"x\":359.9832,\"y\":0.0086,\"z\":359.92}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "09928d", "Name": "Deck", "Transform": { "posX": -17.1200066, "posY": 1.6440686, "posZ": 11.460001, "rotX": 359.9201, "rotY": 270.0002, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Deep Woods Path Locations", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 305000, 305100, 305200 ], "CustomDeck": { "3050": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762757204/D45537203831458A0F432E153DABEBE74495D456/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568795376/0AE1AEFAA65A34BC0E78EA3F861AB21663E8AEF7/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3051": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762758091/328893FABD17F72EB525CF4BFD858236E10B8278/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568796199/41BAE710339BCD802CD5A2171ED3C800D2F1A5A8/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3052": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762759136/1ADDCC768FF642983C6CE6477E4871ED0545D80A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568797379/2E5D9214BB44A44839091D8FEDC6178C71FB8B45/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "5a2fca", "Name": "CardCustom", "Transform": { "posX": -30.3282127, "posY": 1.70843768, "posZ": 7.23686838, "rotX": 359.9201, "rotY": 269.9992, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Deep Woods Path", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 305000, "SidewaysCard": false, "CustomDeck": { "3050": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762757204/D45537203831458A0F432E153DABEBE74495D456/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568795376/0AE1AEFAA65A34BC0E78EA3F861AB21663E8AEF7/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e2803f", "Name": "CardCustom", "Transform": { "posX": -30.3935, "posY": 1.67468476, "posZ": 8.008483, "rotX": 359.920074, "rotY": 269.998749, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vanishing Light", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 305100, "SidewaysCard": false, "CustomDeck": { "3051": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762758091/328893FABD17F72EB525CF4BFD858236E10B8278/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568796199/41BAE710339BCD802CD5A2171ED3C800D2F1A5A8/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c57b41", "Name": "CardCustom", "Transform": { "posX": -30.2200642, "posY": 1.6394248, "posZ": 7.570342, "rotX": 359.9201, "rotY": 270.000183, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Clawing Branches", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 305200, "SidewaysCard": false, "CustomDeck": { "3052": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762759136/1ADDCC768FF642983C6CE6477E4871ED0545D80A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568797379/2E5D9214BB44A44839091D8FEDC6178C71FB8B45/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "0ef6ec", "Name": "CardCustom", "Transform": { "posX": -36.7732, "posY": 1.64856255, "posZ": 7.57, "rotX": 359.9201, "rotY": 270.0, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Path to Spire Hill", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 304500, "SidewaysCard": false, "CustomDeck": { "3045": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762748575/AA30AF69B037B338B10FF8513EA8F8E024C8887A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568787547/52815AD776254FA4165831E8747322200C45E499/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "11e13e", "Name": "CardCustom", "Transform": { "posX": -36.7732, "posY": 1.646329, "posZ": -0.0299998056, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Split in the Path", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 304600, "SidewaysCard": false, "CustomDeck": { "3046": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762750252/04F791E65DD9AEF7FED70A3C6A78899844165A96/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762750569/488451106F9BAC5F734DFB7EE7C0B082D4781366/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1f520a", "Name": "Deck", "Transform": { "posX": -20.2392044, "posY": 1.67135525, "posZ": 7.60440063, "rotX": 359.9201, "rotY": 270.024658, "rotZ": 0.0168082546, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Waterside Path Treacheries", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 308800, 308700, 308600, 308400, 308500, 308200, 308100, 308000 ], "CustomDeck": { "3088": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762804824/55DDCAB056697D885603DF2CC72B3881B15C799B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568859190/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3087": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762804217/8FC6349F844AF43FCEF89B8940E901F9E085F792/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568859190/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3086": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762803705/AC344C88E82A0709F177588605B5E0C59138417F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568859190/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3084": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762800605/040C78CADEBE1A43021DBE6FA9843D0A27AC21AD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568858593/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3085": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762799629/BB7120BE0AA58D2D920F878DB062A11A31A2B794/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568857894/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3082": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762798731/44509A29AFD933E11591728EDD727A54942BFABD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568857894/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3081": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762798174/81FACA6447F0CC853097F7CAF474A7079AB79334/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568857318/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3080": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762797630/1EE5734CCEFA64A11CB3F0304C65B71CF395234F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568857318/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "160dec", "Name": "CardCustom", "Transform": { "posX": -30.2242413, "posY": 1.633823, "posZ": -11.5100031, "rotX": 359.9201, "rotY": 270.024963, "rotZ": 0.0168048255, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 308800, "SidewaysCard": false, "CustomDeck": { "3088": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762804824/55DDCAB056697D885603DF2CC72B3881B15C799B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568859190/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9c8c91", "Name": "CardCustom", "Transform": { "posX": -30.0944881, "posY": 1.71879268, "posZ": -11.68695, "rotX": 359.920044, "rotY": 270.004272, "rotZ": 0.0165697876, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 308700, "SidewaysCard": false, "CustomDeck": { "3087": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762804217/8FC6349F844AF43FCEF89B8940E901F9E085F792/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568859190/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1cad20", "Name": "CardCustom", "Transform": { "posX": -30.2172489, "posY": 1.70272911, "posZ": -11.5632, "rotX": 359.9201, "rotY": 270.004272, "rotZ": 0.016833894, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 308600, "SidewaysCard": false, "CustomDeck": { "3086": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762803705/AC344C88E82A0709F177588605B5E0C59138417F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568859190/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c3fff7", "Name": "CardCustom", "Transform": { "posX": -29.9403076, "posY": 1.712193, "posZ": -11.8560028, "rotX": 359.9201, "rotY": 270.004272, "rotZ": 0.0168348234, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 308400, "SidewaysCard": false, "CustomDeck": { "3084": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762800605/040C78CADEBE1A43021DBE6FA9843D0A27AC21AD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568858593/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dde751", "Name": "CardCustom", "Transform": { "posX": -29.8025932, "posY": 1.72168863, "posZ": -11.4326162, "rotX": 359.9201, "rotY": 270.002747, "rotZ": 0.0168358274, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 308500, "SidewaysCard": false, "CustomDeck": { "3085": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762799629/BB7120BE0AA58D2D920F878DB062A11A31A2B794/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568857894/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c9b157", "Name": "CardCustom", "Transform": { "posX": -30.3000469, "posY": 1.73637486, "posZ": 3.88992381, "rotX": 359.9201, "rotY": 270.004456, "rotZ": 0.0168339238, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 308200, "SidewaysCard": false, "CustomDeck": { "3082": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762798731/44509A29AFD933E11591728EDD727A54942BFABD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568857894/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e371f7", "Name": "CardCustom", "Transform": { "posX": -30.0447979, "posY": 1.74566674, "posZ": 3.98714137, "rotX": 359.9201, "rotY": 270.004272, "rotZ": 0.0168338642, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 308100, "SidewaysCard": false, "CustomDeck": { "3081": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762798174/81FACA6447F0CC853097F7CAF474A7079AB79334/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568857318/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d1a6b0", "Name": "CardCustom", "Transform": { "posX": -30.5319538, "posY": 1.7556715, "posZ": 3.99718142, "rotX": 359.9201, "rotY": 270.005249, "rotZ": 0.01683235, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 308000, "SidewaysCard": false, "CustomDeck": { "3080": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762797630/1EE5734CCEFA64A11CB3F0304C65B71CF395234F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568857318/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "24f153", "Name": "Deck", "Transform": { "posX": -17.1201077, "posY": 1.645165, "posZ": 15.1900015, "rotX": 359.9201, "rotY": 269.9999, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cave Walk Path Locations", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 304700, 304800, 304900 ], "CustomDeck": { "3047": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762752601/63F3EBDF68C62F46C24F214AA1AF5BD8CF8F67A9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568792582/EA8D0B1E229D9B103FB1D7A1A27ED45ECF51AFB6/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3048": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762753752/D368B75E5B4879041E00CE7B15A4D4EE593B26E2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568793492/0D04529A922A1B7269B888EC2233458B80BB2934/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3049": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762754723/723D1E1C67688E893251A75DCD1DCB903C322608/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568794459/8D9081DF41A35FAE0953A5191F3ED4BE1B1698D4/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d9ee3a", "Name": "CardCustom", "Transform": { "posX": -29.997694, "posY": 1.70810449, "posZ": 7.128967, "rotX": 359.9201, "rotY": 270.000519, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cave Walk Path", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 304700, "SidewaysCard": false, "CustomDeck": { "3047": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762752601/63F3EBDF68C62F46C24F214AA1AF5BD8CF8F67A9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568792582/EA8D0B1E229D9B103FB1D7A1A27ED45ECF51AFB6/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "29ed1b", "Name": "CardCustom", "Transform": { "posX": -29.92144, "posY": 1.67417789, "posZ": 7.63352728, "rotX": 359.9201, "rotY": 270.000427, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Harrowing Cave", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 304800, "SidewaysCard": false, "CustomDeck": { "3048": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762753752/D368B75E5B4879041E00CE7B15A4D4EE593B26E2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568793492/0D04529A922A1B7269B888EC2233458B80BB2934/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9cdd1d", "Name": "CardCustom", "Transform": { "posX": -30.2242661, "posY": 1.63943052, "posZ": 7.570005, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crevices", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 304900, "SidewaysCard": false, "CustomDeck": { "3049": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762754723/723D1E1C67688E893251A75DCD1DCB903C322608/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568794459/8D9081DF41A35FAE0953A5191F3ED4BE1B1698D4/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "44d448", "Name": "Custom_Tile", "Transform": { "posX": -36.7732, "posY": 1.6338675, "posZ": 3.86000037, "rotX": 359.9831, "rotY": 359.952026, "rotZ": 359.920074, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "4aebff", "Name": "CardCustom", "Transform": { "posX": -17.1199989, "posY": 1.62006712, "posZ": 3.85970044, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Base of Spire Hill", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 305600, "SidewaysCard": false, "CustomDeck": { "3056": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762766520/7D4C13BDE26F1259E1C4603E8988A462D37678C2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568809142/E60BCDF7150ADB15D8F1DFBF7DB6E20F6335F5A0/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5d1126", "Name": "Deck", "Transform": { "posX": -17.1200275, "posY": 1.64292538, "posZ": 7.570006, "rotX": 359.9201, "rotY": 269.9993, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Waterside Path Locations", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 305300, 305400, 305500 ], "CustomDeck": { "3053": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762762136/322F89EFA40ADA1D1AB7A4B6FA3DB68B90AD9365/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568801862/CA616B8504CCBF8375D6F3580D24ACDD43056FB2/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3054": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762763079/45D5F5A4D89822B81020C7A8F0B73B9E52C0F394/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568802702/30D0E18238FF7628CBDDF72B45E2CC90D5EA7EBD/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3055": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762763887/94FF6F20426409E8AE162B6159D41F87993BA0C4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568803557/CE76364C4CC07EAF1184856C26F443A874638C93/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b7510f", "Name": "CardCustom", "Transform": { "posX": -30.249958, "posY": 1.70844615, "posZ": 7.659012, "rotX": 359.9201, "rotY": 269.9895, "rotZ": 180.016846, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Waterside Path", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 305300, "SidewaysCard": false, "CustomDeck": { "3053": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762762136/322F89EFA40ADA1D1AB7A4B6FA3DB68B90AD9365/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568801862/CA616B8504CCBF8375D6F3580D24ACDD43056FB2/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fd745c", "Name": "CardCustom", "Transform": { "posX": -30.1871262, "posY": 1.67476952, "posZ": 7.623986, "rotX": 359.920074, "rotY": 269.998444, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crumbling Shore", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 305400, "SidewaysCard": false, "CustomDeck": { "3054": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762763079/45D5F5A4D89822B81020C7A8F0B73B9E52C0F394/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568802702/30D0E18238FF7628CBDDF72B45E2CC90D5EA7EBD/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "47bab0", "Name": "CardCustom", "Transform": { "posX": -30.224308, "posY": 1.63943064, "posZ": 7.57010746, "rotX": 359.9201, "rotY": 269.999268, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Close to the Currents", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 305500, "SidewaysCard": false, "CustomDeck": { "3055": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762763887/94FF6F20426409E8AE162B6159D41F87993BA0C4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568803557/CE76364C4CC07EAF1184856C26F443A874638C93/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "65add3", "Name": "CardCustom", "Transform": { "posX": -36.7733, "posY": 1.65080214, "posZ": 15.1900015, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Travellers Rest", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 304400, "SidewaysCard": false, "CustomDeck": { "3044": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762747397/77E6229DFF7F59B136E0C478B4D9AC237EA57EDA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762747732/54012B62BC875FC89F8C036FB5EA7C0E13C13B77/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "778290", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69640088, "posY": 1.558317, "posZ": 14.2788019, "rotX": 359.955139, "rotY": 224.99968, "rotZ": 0.06867286, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.0, "g": 0.304877818, "b": 0.07366932 }, "LayoutGroupSortIndex": 0, "Value": 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": "21548d", "Name": "Custom_Tile", "Transform": { "posX": -4.400808, "posY": 3.6499896, "posZ": 13.8508873, "rotX": 359.880035, "rotY": 270.002625, "rotZ": 359.983917, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/ttnspKt.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fc3e85", "Name": "CardCustom", "Transform": { "posX": 19.8205185, "posY": 1.48065913, "posZ": 0.5200303, "rotX": 359.920135, "rotY": 270.0027, "rotZ": 0.0168678761, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Golden Heart", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 312700, "SidewaysCard": false, "CustomDeck": { "3127": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762841810/84CFD0B8D74F74302DA80669AD88AED69FD1447E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568830045/94AEF1178557E194D20F9C85918FCF89B04FCC7A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c40e68", "Name": "CardCustom", "Transform": { "posX": 0.157359332, "posY": 2.38843131, "posZ": -12.0310717, "rotX": 359.9201, "rotY": 269.9943, "rotZ": 0.0168459639, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Oillipheist", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324200, "SidewaysCard": false, "CustomDeck": { "3242": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1857184474354148825/41EEEA31D234223DF2B3B5B4DE46665A14684E6B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568859817/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e139b7", "Name": "CardCustom", "Transform": { "posX": 19.4518166, "posY": 1.4812634, "posZ": 0.787224054, "rotX": 359.920135, "rotY": 269.999756, "rotZ": 0.01687352, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Execution Drive", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 312600, "SidewaysCard": false, "CustomDeck": { "3126": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762841023/A0C57149D8E5FA8B2B9CC781E985092F52923151/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568817825/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ed79ef", "Name": "CardCustom", "Transform": { "posX": 20.4502888, "posY": 1.47998083, "posZ": 1.16858375, "rotX": 359.920135, "rotY": 269.999939, "rotZ": 180.016861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Spire Bridge", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 312500, "SidewaysCard": false, "CustomDeck": { "3125": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762839640/9DEC501506F67685DBDCA0384A2C081B931B3115/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568810023/5B7A8077686F05EFEF8FE7D82D2A67E4EDC64326/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "66a5d0", "Name": "CardCustom", "Transform": { "posX": 20.91487, "posY": 1.47946715, "posZ": 1.42368972, "rotX": 359.920135, "rotY": 269.999969, "rotZ": 180.016861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Climbing Spire Hill", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 312400, "SidewaysCard": false, "CustomDeck": { "3124": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762838490/7D143DD636ED7C4F323AE935767F7982CED9A230/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568811067/5F7EA6BB904D858E8591A66D2218F93A648A9BC3/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7ccb4c", "Name": "CardCustom", "Transform": { "posX": 19.8942928, "posY": 1.48072374, "posZ": 1.07714975, "rotX": 359.920135, "rotY": 270.003, "rotZ": 0.0168686975, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dullahan", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 312300, "SidewaysCard": false, "CustomDeck": { "3123": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762837388/08F709DD7AD0AA04323D5F02A4901DA28945E735/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568816792/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "84b438", "Name": "Deck", "Transform": { "posX": -2.68852687, "posY": 1.61911666, "posZ": -5.04849529, "rotX": 359.919739, "rotY": 270.002, "rotZ": 0.0168343112, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 310500, 310400, 310300 ], "CustomDeck": { "3105": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762820515/7600E695BE73087070C086A866AE92FC7C68CF36/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568783649/F50723AF1118003BC13A22376BAC99CC3431C646/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3104": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762819164/D11E1A70B854EC31EC41028F26A06D8B1CB62830/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1772706004777267602/55B79C901062A616C76BC8EDE261FCBD04DBD22D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3103": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762818434/FF4714CA0016269723D8A0EF68A179970DC44574/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1772706004777264867/921FDE08E338D83A488FFAB9E702940744E4F556/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "1b78ff", "Name": "CardCustom", "Transform": { "posX": -2.688502, "posY": 1.59734869, "posZ": -5.04852962, "rotX": 359.919739, "rotY": 270.002, "rotZ": 0.01683356, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 310500, "SidewaysCard": false, "CustomDeck": { "3105": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762820515/7600E695BE73087070C086A866AE92FC7C68CF36/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568783649/F50723AF1118003BC13A22376BAC99CC3431C646/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "15b1f6", "Name": "CardCustom", "Transform": { "posX": -2.66636276, "posY": 1.63294649, "posZ": -5.339133, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.0168388654, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 310400, "SidewaysCard": false, "CustomDeck": { "3104": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762819164/D11E1A70B854EC31EC41028F26A06D8B1CB62830/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1772706004777267602/55B79C901062A616C76BC8EDE261FCBD04DBD22D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "871414", "Name": "CardCustom", "Transform": { "posX": -2.74571657, "posY": 1.66656637, "posZ": -5.205462, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.0168389119, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 310300, "SidewaysCard": false, "CustomDeck": { "3103": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762818434/FF4714CA0016269723D8A0EF68A179970DC44574/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1772706004777264867/921FDE08E338D83A488FFAB9E702940744E4F556/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "9ec43a", "Name": "Deck", "Transform": { "posX": -20.3266258, "posY": 1.67372262, "posZ": 15.2448044, "rotX": 359.9201, "rotY": 269.995667, "rotZ": 0.0168500245, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cave Walk Treacheries", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 306700, 306600, 306500, 306400, 306300, 306200, 306100, 306000 ], "CustomDeck": { "3067": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762773475/3A9DF11B90A65C5DE081C52D96CCE8D505AF025B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568844496/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3066": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762772652/1B513E2DBDBBBC399A5EEACA0FB41ABF6D99FFCC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568843704/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3065": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762772070/360FD9D4FA7A7CE40508FA64A58E6E70A488325C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568843704/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3064": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762771362/03A1F6A84B3CB536F7A5648E0CB4A773E3DFBEF2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568842909/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3063": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762770593/9C795D185B6F45513455B5F3B291D59C3EA3F8EB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568842909/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3062": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762770007/21600D9252515C99846C947D6D5B1DE82E7E6104/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568842909/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3061": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762769431/0EA82EE65F09D83D0E74961884388EFACB8C108C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568842293/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3060": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762768665/EF589740A909BD6C62D0E50037C072F739F2C33B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568842293/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e85ed5", "Name": "CardCustom", "Transform": { "posX": -30.2242432, "posY": 1.633823, "posZ": -11.5099993, "rotX": 359.9201, "rotY": 269.995972, "rotZ": 0.0168452971, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 306700, "SidewaysCard": false, "CustomDeck": { "3067": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762773475/3A9DF11B90A65C5DE081C52D96CCE8D505AF025B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568844496/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "57e69f", "Name": "CardCustom", "Transform": { "posX": -29.844017, "posY": 1.66873908, "posZ": -11.0221577, "rotX": 359.9201, "rotY": 269.998718, "rotZ": 0.0168418, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 306600, "SidewaysCard": false, "CustomDeck": { "3066": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762772652/1B513E2DBDBBBC399A5EEACA0FB41ABF6D99FFCC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568843704/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5f949c", "Name": "CardCustom", "Transform": { "posX": -30.1283913, "posY": 1.70271611, "posZ": -11.2422276, "rotX": 359.9201, "rotY": 269.998749, "rotZ": 0.0168420076, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 306500, "SidewaysCard": false, "CustomDeck": { "3065": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762772070/360FD9D4FA7A7CE40508FA64A58E6E70A488325C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568843704/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "982a51", "Name": "CardCustom", "Transform": { "posX": -30.2210617, "posY": 1.71244538, "posZ": -11.4178314, "rotX": 359.9201, "rotY": 269.998749, "rotZ": 0.01684164, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 306400, "SidewaysCard": false, "CustomDeck": { "3064": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762771362/03A1F6A84B3CB536F7A5648E0CB4A773E3DFBEF2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568842909/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b29d7c", "Name": "CardCustom", "Transform": { "posX": -30.1053, "posY": 1.72182429, "posZ": -12.2711124, "rotX": 359.9201, "rotY": 269.998718, "rotZ": 0.0168414377, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 306300, "SidewaysCard": false, "CustomDeck": { "3063": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762770593/9C795D185B6F45513455B5F3B291D59C3EA3F8EB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568842909/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e80a44", "Name": "CardCustom", "Transform": { "posX": -30.3223877, "posY": 1.73249567, "posZ": -11.0060053, "rotX": 359.9201, "rotY": 269.998749, "rotZ": 0.0168414, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 306200, "SidewaysCard": false, "CustomDeck": { "3062": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762770007/21600D9252515C99846C947D6D5B1DE82E7E6104/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568842909/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a0d25e", "Name": "CardCustom", "Transform": { "posX": -30.0095558, "posY": 1.741019, "posZ": -11.9251919, "rotX": 359.9201, "rotY": 269.998749, "rotZ": 0.01684145, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 306100, "SidewaysCard": false, "CustomDeck": { "3061": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762769431/0EA82EE65F09D83D0E74961884388EFACB8C108C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568842293/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "be753c", "Name": "CardCustom", "Transform": { "posX": -30.5735168, "posY": 1.7512418, "posZ": -11.3268061, "rotX": 359.9201, "rotY": 269.998749, "rotZ": 0.0168412328, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 306000, "SidewaysCard": false, "CustomDeck": { "3060": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762768665/EF589740A909BD6C62D0E50037C072F739F2C33B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568842293/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "af7308", "Name": "Custom_Tile", "Transform": { "posX": -36.7732, "posY": 1.63160753, "posZ": -3.82999969, "rotX": 359.983429, "rotY": 0.1839397, "rotZ": 359.92, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "bbdf82", "Name": "CardCustom", "Transform": { "posX": -3.95600033, "posY": 1.59753942, "posZ": -10.4412012, "rotX": 359.919739, "rotY": 270.003174, "rotZ": 0.016832795, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 308900, "SidewaysCard": false, "CustomDeck": { "3089": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762808319/8F43DE5DE52F247AA842EAD06D85D5654A334323/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762808473/DCC64096FCC89BD77AC316C1F2C2B10D66116B14/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d461af", "Name": "Deck", "Transform": { "posX": -3.927714, "posY": 1.70105231, "posZ": 5.75714827, "rotX": 359.919739, "rotY": 270.018982, "rotZ": 0.0168170352, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 290800, 290700, 290600, 302900, 302800, 299200, 299100, 323700, 323600, 323900, 323800, 311800, 311700, 311600, 311500, 324300, 324200, 311200, 311100 ], "CustomDeck": { "2908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675844/0BD158D07C53E6277273DB0E6976DF7108423B9F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2907": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675209/71C4DAB750F419D6DA2008B745AF43C6868F2A82/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2906": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762674772/09067380449F84FD40C4A54944E9627E7DB76AD6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3029": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762732198/B450EDF1A2E9FF514ACFF9B5FF2C5E70137A96C7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962580427/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3028": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762731449/610786F7714C4CC8B55280873E0B37AA3BD8B2FA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962580427/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2992": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762707892/E5332AD085D1046B627BDD223BB6F5D669778FC2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2991": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762707417/989D209CE3752467F3B9A74B33CB7B79ADB855DE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3237": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179173291/72A8CB2FA9E03A2267C33441EE0B2F96B50B926C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3236": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179172666/089F3685557BD525F64970AA01EC2F31A98083D0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3239": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861680767976280300/3B3D5E95E2FC3B594316EF78CD9371A5E4F436DC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568829268/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3238": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861680767976279413/9FA4F5BA92EA89964787F812BE8099A6F21E22C7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568829268/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3118": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762830155/5D5110A4D3287ACEE95FAE7FA1EA6C1D1E34E395/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568828350/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3117": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762829488/82688D9EC2B343D42455BC08D5EA6F311EC3C1A6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568828350/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3116": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762827844/B536D04530D8FC87506CBC9F9BA6409C5D48D820/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568825281/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3115": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762827224/912DAB7B1A6FE0B04C356DADDC722CE22F579A28/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568824439/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3243": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751671402/F06F826BEAAF00F99AA48E6D38B111358A6041AE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1799726733651915517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3242": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751670675/ED83FEEF84AE139AF499D4FBE3052348D4E926B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1799726733651915517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3112": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762824803/1CD0D23525D95DB07453C98737CDFBFEE7B170FE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627356118568/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3111": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762823963/13FDDD6F06F9014C82DD3CAD904BB3CF10C3AAF8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568822849/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4a96c6", "Name": "CardCustom", "Transform": { "posX": -17.1200123, "posY": 1.62006724, "posZ": 3.86000156, "rotX": 359.9201, "rotY": 269.9975, "rotZ": 0.01684315, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290800, "SidewaysCard": false, "CustomDeck": { "2908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675844/0BD158D07C53E6277273DB0E6976DF7108423B9F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "22291d", "Name": "CardCustom", "Transform": { "posX": -17.1859512, "posY": 1.65514553, "posZ": 3.68097734, "rotX": 359.9201, "rotY": 269.997559, "rotZ": 0.0168435723, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290700, "SidewaysCard": false, "CustomDeck": { "2907": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762675209/71C4DAB750F419D6DA2008B745AF43C6868F2A82/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f074a8", "Name": "CardCustom", "Transform": { "posX": -17.01297, "posY": 1.68891919, "posZ": 3.85620785, "rotX": 359.9201, "rotY": 269.9975, "rotZ": 0.0168434177, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 290600, "SidewaysCard": false, "CustomDeck": { "2906": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762674772/09067380449F84FD40C4A54944E9627E7DB76AD6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787287462469/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cff1fa", "Name": "CardCustom", "Transform": { "posX": -11.6148634, "posY": 1.61332309, "posZ": 7.035543, "rotX": 359.9201, "rotY": 270.008057, "rotZ": 0.0167177785, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 302900, "SidewaysCard": false, "CustomDeck": { "3029": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762732198/B450EDF1A2E9FF514ACFF9B5FF2C5E70137A96C7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962580427/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "da34d0", "Name": "CardCustom", "Transform": { "posX": -11.5346, "posY": 1.64299643, "posZ": 7.42649364, "rotX": 359.920624, "rotY": 270.0054, "rotZ": 0.0151907047, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 302800, "SidewaysCard": false, "CustomDeck": { "3028": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762731449/610786F7714C4CC8B55280873E0B37AA3BD8B2FA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808956962580427/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "95754c", "Name": "CardCustom", "Transform": { "posX": -11.8849335, "posY": 1.61162579, "posZ": -0.0747820958, "rotX": 359.919678, "rotY": 269.9972, "rotZ": 0.0174433626, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 299200, "SidewaysCard": false, "CustomDeck": { "2992": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762707892/E5332AD085D1046B627BDD223BB6F5D669778FC2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8099c7", "Name": "CardCustom", "Transform": { "posX": -11.9778719, "posY": 1.64148831, "posZ": 0.3000379, "rotX": 359.920044, "rotY": 270.078735, "rotZ": 0.0112722246, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 299100, "SidewaysCard": false, "CustomDeck": { "2991": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762707417/989D209CE3752467F3B9A74B33CB7B79ADB855DE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595787/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2c9de5", "Name": "CardCustom", "Transform": { "posX": -11.533411, "posY": 1.61045837, "posZ": -2.316599, "rotX": 359.920135, "rotY": 269.995331, "rotZ": 0.0165807512, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323700, "SidewaysCard": false, "CustomDeck": { "3237": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179173291/72A8CB2FA9E03A2267C33441EE0B2F96B50B926C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "570cba", "Name": "CardCustom", "Transform": { "posX": -11.5595789, "posY": 1.64020455, "posZ": -2.12147141, "rotX": 359.921356, "rotY": 269.994781, "rotZ": 0.0147209158, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323600, "SidewaysCard": false, "CustomDeck": { "3236": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854923262179172666/089F3685557BD525F64970AA01EC2F31A98083D0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755808787288595195/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "06a5d7", "Name": "CardCustom", "Transform": { "posX": -12.368391, "posY": 1.6076895, "posZ": -15.6584206, "rotX": 359.9202, "rotY": 269.9912, "rotZ": 0.0170880072, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323900, "SidewaysCard": false, "CustomDeck": { "3239": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861680767976280300/3B3D5E95E2FC3B594316EF78CD9371A5E4F436DC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568829268/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2ada41", "Name": "CardCustom", "Transform": { "posX": -12.19515, "posY": 1.63725483, "posZ": -15.361021, "rotX": 359.918854, "rotY": 270.0363, "rotZ": 0.0182655156, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 323800, "SidewaysCard": false, "CustomDeck": { "3238": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1861680767976279413/9FA4F5BA92EA89964787F812BE8099A6F21E22C7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568829268/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "03dfc4", "Name": "CardCustom", "Transform": { "posX": -12.3225288, "posY": 1.67137349, "posZ": -15.2438793, "rotX": 359.917938, "rotY": 270.085632, "rotZ": 0.0100942114, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 311800, "SidewaysCard": false, "CustomDeck": { "3118": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762830155/5D5110A4D3287ACEE95FAE7FA1EA6C1D1E34E395/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568828350/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "abf1d1", "Name": "CardCustom", "Transform": { "posX": -12.3342018, "posY": 1.6808579, "posZ": -15.9385529, "rotX": 359.9155, "rotY": 270.057068, "rotZ": 0.0107465861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 311700, "SidewaysCard": false, "CustomDeck": { "3117": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762829488/82688D9EC2B343D42455BC08D5EA6F311EC3C1A6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568828350/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ce7ab4", "Name": "CardCustom", "Transform": { "posX": -9.318452, "posY": 1.77619815, "posZ": -5.306386, "rotX": 359.9192, "rotY": 269.991058, "rotZ": 0.05012719, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 311600, "SidewaysCard": false, "CustomDeck": { "3116": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762827844/B536D04530D8FC87506CBC9F9BA6409C5D48D820/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568825281/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "356848", "Name": "CardCustom", "Transform": { "posX": -8.687146, "posY": 1.78520215, "posZ": -5.24045944, "rotX": 359.9193, "rotY": 270.008362, "rotZ": 359.9759, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 311500, "SidewaysCard": false, "CustomDeck": { "3115": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762827224/912DAB7B1A6FE0B04C356DADDC722CE22F579A28/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568824439/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7e3763", "Name": "CardCustom", "Transform": { "posX": -7.82138157, "posY": 1.79776812, "posZ": 9.59205, "rotX": 359.913361, "rotY": 270.033661, "rotZ": 0.0163988564, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324300, "SidewaysCard": false, "CustomDeck": { "3243": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751671402/F06F826BEAAF00F99AA48E6D38B111358A6041AE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1799726733651915517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3ae953", "Name": "CardCustom", "Transform": { "posX": -7.446668, "posY": 1.80743682, "posZ": 9.452734, "rotX": 359.91864, "rotY": 270.026917, "rotZ": 0.0179826282, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 324200, "SidewaysCard": false, "CustomDeck": { "3242": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1881955541751670675/ED83FEEF84AE139AF499D4FBE3052348D4E926B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1799726733651915517/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "569254", "Name": "CardCustom", "Transform": { "posX": -7.63726854, "posY": 1.8172282, "posZ": 9.565573, "rotX": 359.9163, "rotY": 270.016357, "rotZ": 0.0166017246, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 311200, "SidewaysCard": false, "CustomDeck": { "3112": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762824803/1CD0D23525D95DB07453C98737CDFBFEE7B170FE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1647717627356118568/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "383ff1", "Name": "CardCustom", "Transform": { "posX": -7.17132235, "posY": 1.82801032, "posZ": 10.1246748, "rotX": 359.9201, "rotY": 270.003784, "rotZ": 0.0168348234, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 311100, "SidewaysCard": false, "CustomDeck": { "3111": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762823963/13FDDD6F06F9014C82DD3CAD904BB3CF10C3AAF8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568822849/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "d91326", "Name": "Deck", "Transform": { "posX": -20.2951012, "posY": 1.67256188, "posZ": 11.4448023, "rotX": 359.9201, "rotY": 269.999878, "rotZ": 0.0168431532, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Deep Woods Path Treacheries", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 307900, 307700, 307600, 307500, 307400, 307300, 307200, 307100 ], "CustomDeck": { "3079": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762792920/61369C1200C875B9B5E9C15ECD2F407143D72AEE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568853229/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3077": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762782759/6834EA195A3D51984DED2B1CF646286991C3541F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568852279/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3076": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762781810/F19D9799336E8B96FA9B7D0305F4BDE64B4795A9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568852279/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3075": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762781034/7E4E8A9E7AF4F95D0E51DEDB8B338280B51AE74B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568851285/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3074": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762780303/13896C9EDCBA8BC799167A361B8086DD83D8C5FC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568851285/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3073": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762779611/E9471228D66041FF2AD91BE6598C9CC8FB84BDC2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568851285/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3072": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762778848/60BA059E5F5F7D3F19AE1072E066242552573C00/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568850625/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3071": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762778112/FBE77A873E1408BF09019A50D92419E080D636B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568849852/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9fb6aa", "Name": "CardCustom", "Transform": { "posX": -30.2242413, "posY": 1.633823, "posZ": -11.51, "rotX": 359.9201, "rotY": 270.000275, "rotZ": 0.0168391988, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 307900, "SidewaysCard": false, "CustomDeck": { "3079": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762792920/61369C1200C875B9B5E9C15ECD2F407143D72AEE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568853229/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f8d938", "Name": "CardCustom", "Transform": { "posX": -30.3918839, "posY": 1.669044, "posZ": -11.1699448, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.016839847, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 307700, "SidewaysCard": false, "CustomDeck": { "3077": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762782759/6834EA195A3D51984DED2B1CF646286991C3541F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568852279/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "813ca3", "Name": "CardCustom", "Transform": { "posX": -29.8495579, "posY": 1.70240068, "posZ": -11.833374, "rotX": 359.9201, "rotY": 270.000031, "rotZ": 0.0168399233, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 307600, "SidewaysCard": false, "CustomDeck": { "3076": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762781810/F19D9799336E8B96FA9B7D0305F4BDE64B4795A9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568852279/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fe805c", "Name": "CardCustom", "Transform": { "posX": -29.8039532, "posY": 1.71204937, "posZ": -11.5560856, "rotX": 359.9201, "rotY": 270.000031, "rotZ": 0.01683957, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 307500, "SidewaysCard": false, "CustomDeck": { "3075": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762781034/7E4E8A9E7AF4F95D0E51DEDB8B338280B51AE74B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568851285/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3a24a0", "Name": "CardCustom", "Transform": { "posX": -30.1927872, "posY": 1.72204721, "posZ": -11.5582466, "rotX": 359.9201, "rotY": 270.000031, "rotZ": 0.016839819, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 307400, "SidewaysCard": false, "CustomDeck": { "3074": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762780303/13896C9EDCBA8BC799167A361B8086DD83D8C5FC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568851285/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "40aaae", "Name": "CardCustom", "Transform": { "posX": -30.3048, "posY": 1.73624563, "posZ": 3.86746144, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 0.01683957, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 307300, "SidewaysCard": false, "CustomDeck": { "3073": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762779611/E9471228D66041FF2AD91BE6598C9CC8FB84BDC2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568851285/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "52fe30", "Name": "CardCustom", "Transform": { "posX": -30.2720661, "posY": 1.7458086, "posZ": 3.65364885, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.0168400574, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 307200, "SidewaysCard": false, "CustomDeck": { "3072": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762778848/60BA059E5F5F7D3F19AE1072E066242552573C00/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568850625/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8f5084", "Name": "CardCustom", "Transform": { "posX": -30.674284, "posY": 1.75581193, "posZ": 3.90609717, "rotX": 359.9201, "rotY": 270.000031, "rotZ": 0.01683982, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 307100, "SidewaysCard": false, "CustomDeck": { "3071": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762778112/FBE77A873E1408BF09019A50D92419E080D636B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1755809001568849852/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "dd6788", "Name": "Deck", "Transform": { "posX": -2.724827, "posY": 1.64001679, "posZ": 0.3733057, "rotX": 359.919739, "rotY": 269.9841, "rotZ": 0.0168597475, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 310000, 309900, 309800, 309700, 309600, 309500, 309400 ], "CustomDeck": { "3100": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762816324/A20BBF3BABFC02DDF397C554A064B56755334CFD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762816600/8D2F8250CE69535871BF1B541B64D96722D2D6E7/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3099": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762815531/F844A0187E999A69B0656AD0A1B0B38243190FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762815753/CB4D2BB54E78710D0E06CEE6A9FBB4C84BEA45E0/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3098": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762814634/952F2AEC0A3D8BB4C1EFC7BBA23D6E29617E5128/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762814832/158B4931532996E2796C0CB7934F06F5022EAD45/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3097": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762813696/44CA6822EE685CF70B6F2FFA330A4B3D49C3BCA5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762813918/13EF08274ED33DCE5D6E2200A814A13D307A248B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3096": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762812149/A5AFC3437E3814AEABFC1BD69CE6113C1A5D266F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762812372/8399C27671CA0BA8E6DDBEB9A711962670096375/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3095": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762811178/D8EBCD708CE893F8319504006C5DE08F12874F9B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762811484/747C97C1EE3937E4473B2A73F16744B559B1E4ED/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3094": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762810273/06A736625DD5209A9716BDC3FF1C329CB40F05F0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762810622/F8423419C20E5F7177C7AD58127103C5DA407E88/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "be6064", "Name": "CardCustom", "Transform": { "posX": -12.0696449, "posY": 1.60738671, "posZ": -15.3244276, "rotX": 359.9201, "rotY": 269.984, "rotZ": 0.0168612245, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 310000, "SidewaysCard": false, "CustomDeck": { "3100": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762816324/A20BBF3BABFC02DDF397C554A064B56755334CFD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762816600/8D2F8250CE69535871BF1B541B64D96722D2D6E7/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3e56c0", "Name": "CardCustom", "Transform": { "posX": -12.3671293, "posY": 1.64591587, "posZ": -15.7363129, "rotX": 359.9201, "rotY": 269.996368, "rotZ": 0.0168427415, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 309900, "SidewaysCard": false, "CustomDeck": { "3099": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762815531/F844A0187E999A69B0656AD0A1B0B38243190FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762815753/CB4D2BB54E78710D0E06CEE6A9FBB4C84BEA45E0/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6a4b0c", "Name": "CardCustom", "Transform": { "posX": -2.51147246, "posY": 1.67283368, "posZ": 0.673813, "rotX": 359.9201, "rotY": 269.996552, "rotZ": 0.105419062, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 309800, "SidewaysCard": false, "CustomDeck": { "3098": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762814634/952F2AEC0A3D8BB4C1EFC7BBA23D6E29617E5128/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762814832/158B4931532996E2796C0CB7934F06F5022EAD45/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "772e5c", "Name": "CardCustom", "Transform": { "posX": -2.60644054, "posY": 1.68184888, "posZ": 0.708608031, "rotX": 359.919769, "rotY": 269.995361, "rotZ": 359.9432, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 309700, "SidewaysCard": false, "CustomDeck": { "3097": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762813696/44CA6822EE685CF70B6F2FFA330A4B3D49C3BCA5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762813918/13EF08274ED33DCE5D6E2200A814A13D307A248B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "880112", "Name": "CardCustom", "Transform": { "posX": -2.95431972, "posY": 1.69786417, "posZ": 0.42793107, "rotX": 359.9201, "rotY": 269.997437, "rotZ": 0.0168428421, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 309600, "SidewaysCard": false, "CustomDeck": { "3096": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762812149/A5AFC3437E3814AEABFC1BD69CE6113C1A5D266F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762812372/8399C27671CA0BA8E6DDBEB9A711962670096375/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cc4b18", "Name": "CardCustom", "Transform": { "posX": -2.79448485, "posY": 1.697075, "posZ": -0.15858753, "rotX": 359.9201, "rotY": 269.995636, "rotZ": 0.0168450736, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 309500, "SidewaysCard": false, "CustomDeck": { "3095": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762811178/D8EBCD708CE893F8319504006C5DE08F12874F9B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762811484/747C97C1EE3937E4473B2A73F16744B559B1E4ED/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2e1a56", "Name": "CardCustom", "Transform": { "posX": -2.54154515, "posY": 1.70658755, "posZ": 0.2569451, "rotX": 359.9201, "rotY": 269.995728, "rotZ": 0.0168450959, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 309400, "SidewaysCard": false, "CustomDeck": { "3094": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762810273/06A736625DD5209A9716BDC3FF1C329CB40F05F0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1854922528762810622/F8423419C20E5F7177C7AD58127103C5DA407E88/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "f3fb66", "Name": "Custom_Tile", "Transform": { "posX": -36.7732, "posY": 1.63610113, "posZ": 11.460001, "rotX": 359.9832, "rotY": 0.008582988, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } } ], "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 } } ] }, { "GUID": "92ee5a", "Name": "Custom_Model", "Transform": { "posX": 0.1553902, "posY": 1.62813711, "posZ": -10.30873, "rotX": 359.919739, "rotY": 270.002136, "rotZ": 0.0168214869, "scaleX": 0.5000004, "scaleY": 0.5000004, "scaleZ": 0.5000004 }, "Nickname": "Custom Data Helper", "Description": "Include this in custom content for clue spawning!", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "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 \"Ship's Stern\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Slippery Deck\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"},\r\n \"Forecastle Deck Mast\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"},\r\n \"Forecastle\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Hold\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Keel\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Stormy Sea\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n\r\n \"Cave Entrance\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Cave\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Outside an Abandoned Hut\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Abandoned Hut\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Road to Creek Bridge\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"By the Creek\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Burning Thicket\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Fairies Clearing\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Forest Bog\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Forest Graves\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Misty Path\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Steep Incline\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"The Gorge\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Fairy Grove\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"},\r\n\r\n \"Garden\": {\"type\": \"fixed\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Hallway\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"First Floor Landing\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Master Bedroom\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Dining Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Front Room\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Kitchen\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Study\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Maids Room\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Butlers Room\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"},\r\n\r\n \"Travellers Rest\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Path to Spire Hill\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Split in the Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Cave Walk Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Harrowing Cave\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Crevices\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Deep Woods Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Vanishing Light\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Clawing Branches\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Waterside Path\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Crumbling Shore\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Close to the Currents\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"The Base of Spire Hill\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Spire Bridge\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Climbing Spire Hill\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n\r\n \"Spire Peak\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Rocky Path Down\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Torq Gates\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"},\r\n \"East Street\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Pardli Lane\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"West Street\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Hangman's Green\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Central Square\": {\"type\": \"fixed\", \"value\": 6, \"clueSide\": \"front\"},\r\n \"Financial District\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\n\n \"Old Market\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Chulainn's Bar\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Ballysiorai Bridge\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Siobhan's Apothecary\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Ballysiorai Graveyard\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Ballysiorai Church\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Ballysiorai Well\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Life Library\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"}\n\r\r\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": "992bc4", "Name": "Custom_Tile", "Transform": { "posX": -3.73660016, "posY": 1.58228528, "posZ": -15.0084047, "rotX": 359.919739, "rotY": 269.9815, "rotZ": 0.016863836, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "Celtic Rising Difficulty", "Description": "click to set chaos token difficulty", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eda22b", "Name": "Custom_Token", "Transform": { "posX": 8.366007, "posY": 1.5614779, "posZ": -28.4186039, "rotX": 359.9201, "rotY": 270.016174, "rotZ": 0.0168492589, "scaleX": 4.105075, "scaleY": 1.0, "scaleZ": 4.105075 }, "Nickname": "Campaign Log", "Description": "Celtic Rising", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/1861684065935817332/625461F69C3A35927A6C140B840C00476689B5C6/", "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\t--Sc1\r\n {\r\n pos = {-1.600,0.1,0.446},\r\n size = 400,\r\n state = false\r\n },\r\n\r\n --Sc2\r\n {\r\n pos = {-1.600,0.1,0.549},\r\n size = 400,\r\n state = false\r\n },\r\n\r\n --Sc3\r\n {\r\n pos = {-1.600,0.1,0.652},\r\n size = 400,\r\n state = false\r\n },\r\n\r\n\t--Sc4\r\n {\r\n pos = {-1.600,0.1,0.755},\r\n size = 400,\r\n state = false\r\n },\r\n\r\n --Sc5\r\n {\r\n pos = {-1.600,0.1,0.858},\r\n size = 400,\r\n state = false\r\n },\r\n\r\n --Sc6\r\n {\r\n pos = {-1.600,0.1,0.961},\r\n size = 400,\r\n state = false\r\n },\r\n\r\n --Sc7\r\n {\r\n pos = {-1.600,0.1,1.064},\r\n size = 400,\r\n state = false\r\n },\r\n\r\n --Sc8\r\n {\r\n pos = {-1.600,0.1,1.167},\r\n size = 400,\r\n state = false\r\n },\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\r\n --1XP\r\n {\r\n pos = {-1.124,0.1,-0.867},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --1PT\r\n {\r\n pos = {-1.276,0.1,-0.646},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --1MT\r\n {\r\n pos = {-1.024,0.1,-0.646},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --1GoG\r\n {\r\n pos = {-1.124,0.1,-0.462},\r\n size = 800,\r\n value = 0,\r\n hideBG = false\r\n },\n\r\n --2XP\r\n {\r\n pos = {-0.274,0.1,-0.867},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2PT\r\n {\r\n pos = {-0.409,0.1,-0.646},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2MT\r\n {\r\n pos = {-0.156,0.1,-0.646},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2GoG\r\n {\r\n pos = {-0.274,0.1,-0.462},\r\n size = 800,\r\n value = 0,\r\n hideBG = false\r\n },\n\n --3XP\r\n {\r\n pos = {0.576,0.1,-0.867},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3PT\r\n {\r\n pos = {0.441,0.1,-0.646},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3MT\r\n {\r\n pos = {0.694,0.1,-0.646},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3GoG\r\n {\r\n pos = {0.576,0.1,-0.462},\r\n size = 800,\r\n value = 0,\r\n hideBG = false\r\n },\n\n --4XP\r\n {\r\n pos = {1.426,0.1,-0.867},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4PT\r\n {\r\n pos = {1.291,0.1,-0.646},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4MT\r\n {\r\n pos = {1.544,0.1,-0.646},\r\n size = 500,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4GoG\r\n {\r\n pos = {1.426,0.1,-0.462},\r\n size = 800,\r\n value = 0,\r\n hideBG = false\r\n },\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 --Campaign Notes\r\n {\r\n pos = {0.572,0.1,0.814},\r\n rows = 12,\r\n width = 10250,\r\n font_size = 300,\r\n label = \"Notes\",\r\n value = \"\",\r\n alignment = 2\r\n },\n\n --Killed and Insane\r\n {\r\n pos = {0.572,0.1,1.530},\r\n rows = 4,\r\n width = 10250,\r\n font_size = 300,\r\n label = \"The crystals call to them\",\r\n value = \"\",\r\n alignment = 2\r\n },\n\n\n --Sacrificed\r\n {\r\n pos = {-1.12,0.1,1.530},\r\n rows = 4,\r\n width = 5000,\r\n font_size = 300,\r\n label = \"They died in pain\",\r\n value = \"\",\r\n alignment = 2\r\n },\n\r\n\r\n --1Player\r\n {\r\n pos = {-1.298,0.1,-1.247},\r\n rows = 1,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Player name\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n\r\n --1Investigator\r\n {\r\n pos = {-1.298,0.1,-1.061},\r\n rows = 1,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Investigator name\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n\r\n --1AssetsWeaknesses\r\n {\r\n pos = {-1.298,0.1,-0.054},\r\n rows = 7,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Earned story assets and weaknesses\",\r\n value = \"\",\r\n alignment = 2\r\n },\n\n --2Player\r\n {\r\n pos = {-0.438,0.1,-1.247},\r\n rows = 1,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Player name\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n\r\n --2Investigator\r\n {\r\n pos = {-0.438,0.1,-1.061},\r\n rows = 1,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Investigator name\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n\r\n --2AssetsWeaknesses\r\n {\r\n pos = {-0.438,0.1,-0.054},\r\n rows = 7,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Earned story assets and weaknesses\",\r\n value = \"\",\r\n alignment = 2\r\n },\n --3Player\r\n {\r\n pos = {0.422,0.1,-1.247},\r\n rows = 1,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Player name\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n\r\n --3Investigator\r\n {\r\n pos = {0.422,0.1,-1.061},\r\n rows = 1,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Investigator name\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n\r\n --3AssetsWeaknesses\r\n {\r\n pos = {0.422,0.1,-0.054},\r\n rows = 7,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Earned story assets and weaknesses\",\r\n value = \"\",\r\n alignment = 2\r\n },\n\n --4Player\r\n {\r\n pos = {1.282,0.1,-1.247},\r\n rows = 1,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Player name\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n\r\n --4Investigator\r\n {\r\n pos = {1.282,0.1,-1.061},\r\n rows = 1,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Investigator name\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n\r\n --4AssetsWeaknesses\r\n {\r\n pos = {1.282,0.1,-0.054},\r\n rows = 7,\r\n width = 3600,\r\n font_size = 300,\r\n label = \"Earned story assets and weaknesses\",\r\n value = \"\",\r\n alignment = 2\r\n },\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": "", "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 } } ] }