{ "GUID": "524fbc", "Name": "Custom_Model_Bag", "Transform": { "posX": 5.811972, "posY": 1.55351686, "posZ": 0.103071257, "rotX": 358.084961, "rotY": 270.0047, "rotZ": 0.0167301819, "scaleX": 0.5, "scaleY": 0.139652729, "scaleZ": 0.5 }, "Nickname": "Cartoon Investigators", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1785092789057549667/7230A58735443DF70B24F5BAFD93B4FBBC1B28D7/", "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,3,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, 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\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, 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={-1.4,3,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, 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={-1.4,3,-8.4}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, 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={1.4,3,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, 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={1.4,3,-8.4}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, 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={1.4,3,-7.2}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, 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={-1.4,3,-7.2}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, 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={2.4,3,7}, rotation={0,0,0}, height=850, width=2000,\r\n font_size=700, 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={-2.4,3,7}, rotation={0,0,0}, height=850, width=2000,\r\n font_size=700, 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,3,-6}, rotation={0,0,0}, height=500, width=1200,\r\n font_size=350, 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\":{\"04945b\":{\"lock\":false,\"pos\":{\"x\":-19.6592,\"y\":1.3154,\"z\":-57.5937},\"rot\":{\"x\":0.0208,\"y\":269.9937,\"z\":0.0168}},\"0636ab\":{\"lock\":false,\"pos\":{\"x\":-25.9113,\"y\":1.2681,\"z\":-79.7757},\"rot\":{\"x\":359.9792,\"y\":90.0033,\"z\":359.9832}},\"123caa\":{\"lock\":false,\"pos\":{\"x\":-22.4528,\"y\":1.3058,\"z\":-86.9656},\"rot\":{\"x\":0.0208,\"y\":270.0191,\"z\":0.0168}},\"14bef8\":{\"lock\":false,\"pos\":{\"x\":-22.5761,\"y\":1.3166,\"z\":-50.0492},\"rot\":{\"x\":0.0208,\"y\":270.0168,\"z\":0.0168}},\"175903\":{\"lock\":false,\"pos\":{\"x\":-22.6464,\"y\":1.312,\"z\":-65.5466},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"20ff4c\":{\"lock\":false,\"pos\":{\"x\":-25.7759,\"y\":1.2746,\"z\":-57.6721},\"rot\":{\"x\":359.9792,\"y\":90.0001,\"z\":359.9832}},\"27a0b8\":{\"lock\":false,\"pos\":{\"x\":-19.5361,\"y\":1.3069,\"z\":-86.8433},\"rot\":{\"x\":0.0208,\"y\":269.9789,\"z\":0.0168}},\"287b34\":{\"lock\":false,\"pos\":{\"x\":-22.2417,\"y\":1.3059,\"z\":-86.9506},\"rot\":{\"x\":0.0208,\"y\":270.0191,\"z\":0.0168}},\"33566f\":{\"lock\":false,\"pos\":{\"x\":-22.594,\"y\":1.3121,\"z\":-65.4763},\"rot\":{\"x\":0.0208,\"y\":270.0115,\"z\":0.0168}},\"3446fd\":{\"lock\":false,\"pos\":{\"x\":-22.5687,\"y\":1.3143,\"z\":-57.8367},\"rot\":{\"x\":0.0208,\"y\":270.017,\"z\":0.0168}},\"46d9c7\":{\"lock\":false,\"pos\":{\"x\":-19.6502,\"y\":1.3131,\"z\":-65.5617},\"rot\":{\"x\":0.0208,\"y\":270.0117,\"z\":0.0168}},\"5b6db3\":{\"lock\":false,\"pos\":{\"x\":-22.4189,\"y\":1.3144,\"z\":-57.5627},\"rot\":{\"x\":0.0208,\"y\":270.017,\"z\":0.0168}},\"6c02d9\":{\"lock\":false,\"pos\":{\"x\":-22.3626,\"y\":1.3166,\"z\":-50.0973},\"rot\":{\"x\":0.0208,\"y\":270.0168,\"z\":0.0168}},\"7200cf\":{\"lock\":false,\"pos\":{\"x\":-25.8249,\"y\":1.266,\"z\":-86.9147},\"rot\":{\"x\":359.9792,\"y\":89.9983,\"z\":359.9832}},\"73d2da\":{\"lock\":false,\"pos\":{\"x\":-25.9665,\"y\":1.2702,\"z\":-72.4131},\"rot\":{\"x\":359.9792,\"y\":89.9862,\"z\":359.9832}},\"7b0461\":{\"lock\":false,\"pos\":{\"x\":-19.5429,\"y\":1.3178,\"z\":-49.6959},\"rot\":{\"x\":0.0208,\"y\":270.003,\"z\":0.0168}},\"8a8776\":{\"lock\":false,\"pos\":{\"x\":-19.639,\"y\":1.3112,\"z\":-71.9966},\"rot\":{\"x\":0.0208,\"y\":269.9857,\"z\":0.0168}},\"948d48\":{\"lock\":false,\"pos\":{\"x\":-22.5272,\"y\":1.3166,\"z\":-50.0108},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"9ad519\":{\"lock\":false,\"pos\":{\"x\":-22.5767,\"y\":1.3101,\"z\":-72.195},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"9ceaf0\":{\"lock\":false,\"pos\":{\"x\":-25.6646,\"y\":1.2769,\"z\":-50.1079},\"rot\":{\"x\":359.9792,\"y\":89.9992,\"z\":359.9832}},\"a99c28\":{\"lock\":false,\"pos\":{\"x\":-22.5172,\"y\":1.3102,\"z\":-72.038},\"rot\":{\"x\":0.0208,\"y\":270.0114,\"z\":0.0168}},\"bccab4\":{\"lock\":false,\"pos\":{\"x\":-22.2837,\"y\":1.3081,\"z\":-79.3587},\"rot\":{\"x\":0.0208,\"y\":270.0239,\"z\":0.0168}},\"c1f881\":{\"lock\":false,\"pos\":{\"x\":-22.497,\"y\":1.308,\"z\":-79.5444},\"rot\":{\"x\":0.0208,\"y\":270.0158,\"z\":0.0168}},\"d213c3\":{\"lock\":false,\"pos\":{\"x\":-19.3052,\"y\":1.3092,\"z\":-79.339},\"rot\":{\"x\":0.0208,\"y\":270.0067,\"z\":0.0168}},\"dc27c7\":{\"lock\":false,\"pos\":{\"x\":-25.8464,\"y\":1.2723,\"z\":-65.495},\"rot\":{\"x\":359.9792,\"y\":89.9999,\"z\":359.9832}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "6c02d9", "Name": "CardCustom", "Transform": { "posX": -22.3626, "posY": 1.31663859, "posZ": -50.0973, "rotX": 0.0208038185, "rotY": 270.0168, "rotZ": 0.0167773236, "scaleX": 0.782302439, "scaleY": 1.0, "scaleZ": 0.782302439 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 583600, "SidewaysCard": false, "CustomDeck": { "5836": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719856303/3960661F490CAD5A3DDB1F6688773D2579EEC8BE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719856499/04C811B2FAD92F9ABFC4262AAE244613ABD2F9A0/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "175903", "Name": "CardCustom", "Transform": { "posX": -22.6464, "posY": 1.31201315, "posZ": -65.5466, "rotX": 0.0208087526, "rotY": 270.0, "rotZ": 0.0167711042, "scaleX": 0.7602123, "scaleY": 1.0, "scaleZ": 0.7602123 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 590700, "SidewaysCard": false, "CustomDeck": { "5907": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719918825/31584C3D8322B8D798057EAF5AB071EF49BC01C6/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719919017/9C35D1520CC9403C19F9A090F2FE8C8651118AE0/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "04945b", "Name": "CardCustom", "Transform": { "posX": -19.6592, "posY": 1.315426, "posZ": -57.5937, "rotX": 0.0208106022, "rotY": 269.9937, "rotZ": 0.0167688187, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 559200, "SidewaysCard": false, "CustomDeck": { "5592": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1785093056613339028/0299D7958018FAA932B887568EA045A652F8E514/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1785093056613339247/79C8AEB2EFD8BE44A12DBA116D1B4A54EE22F4E9/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0636ab", "Name": "Custom_Model_Bag", "Transform": { "posX": -25.9112988, "posY": 1.26809371, "posZ": -79.77571, "rotX": 359.9792, "rotY": 90.00331, "rotZ": 359.983215, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "starter deck & cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "5532e3", "Name": "CardCustom", "Transform": { "posX": -26.3005867, "posY": 3.42621756, "posZ": -79.5138855, "rotX": 0.032439772, "rotY": 269.98053, "rotZ": 3.09974837, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582000, "SidewaysCard": false, "CustomDeck": { "5820": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168095520/75D8689F6C5719304BD831225B8666B4B2F2C22B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "54bfd8", "Name": "CardCustom", "Transform": { "posX": -25.3399944, "posY": 3.46044636, "posZ": -81.09801, "rotX": 0.009730245, "rotY": 270.124573, "rotZ": 6.96842527, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 583600, "SidewaysCard": false, "CustomDeck": { "5836": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1629730253164340880/91326C683A7E009E924249B05156E3DAB16ABE32/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "123caa", "Name": "CardCustom", "Transform": { "posX": -22.4528, "posY": 1.30581391, "posZ": -86.9656, "rotX": 0.0208032057, "rotY": 270.0191, "rotZ": 0.0167779885, "scaleX": 0.7602123, "scaleY": 1.0, "scaleZ": 0.7602123 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582300, "SidewaysCard": false, "CustomDeck": { "5823": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168113822/84F24833DB63575CE5F246329BC06B58076F6129/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1785092789056706866/39FC78CE523AE4B71B0E07F84F36ADFA3BF01D44/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "20ff4c", "Name": "Custom_Model_Bag", "Transform": { "posX": -25.775898, "posY": 1.27461278, "posZ": -57.6721, "rotX": 359.9792, "rotY": 90.0001, "rotZ": 359.983246, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "starter deck & cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "aec350", "Name": "CardCustom", "Transform": { "posX": -25.26201, "posY": 3.374745, "posZ": -56.9128265, "rotX": 0.0201283824, "rotY": 269.6922, "rotZ": 0.009099556, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582700, "SidewaysCard": false, "CustomDeck": { "5827": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168147837/5F666E359D99212E61911AE7C2BE4E873DB4F079/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "74cc53", "Name": "CardCustom", "Transform": { "posX": -26.08953, "posY": 3.37414265, "posZ": -57.8971443, "rotX": 0.0232459567, "rotY": 270.055145, "rotZ": 0.004269897, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582500, "SidewaysCard": false, "CustomDeck": { "5825": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168145900/E3AFD8B1EC20F26F2F8184F76A255C375063DE5E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cbf74f", "Name": "CardCustom", "Transform": { "posX": -26.50004, "posY": 3.37483, "posZ": -57.2817459, "rotX": 359.933929, "rotY": 269.724, "rotZ": 0.0117670232, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582600, "SidewaysCard": false, "CustomDeck": { "5826": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168146755/661ED03EF5B9FE6BE3748EC799C02BAB16524137/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "27a0b8", "Name": "CardCustom", "Transform": { "posX": -19.5361, "posY": 1.306909, "posZ": -86.8433, "rotX": 0.0208149552, "rotY": 269.9789, "rotZ": 0.0167632084, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 580600, "SidewaysCard": false, "CustomDeck": { "5806": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1785092789056729135/DE4B1EA53959D455758CEA8209AF0206A163E5C3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1785092789056729451/0E070085ABDABBB17F53B851A801A01DDF260DF5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "46d9c7", "Name": "CardCustom", "Transform": { "posX": -19.6502, "posY": 1.313097, "posZ": -65.5617, "rotX": 0.0208054744, "rotY": 270.0117, "rotZ": 0.0167751927, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 557100, "SidewaysCard": false, "CustomDeck": { "5571": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1810988148039477054/78BCB0E11FBCFAEA034D8AD992511872F9C6A397/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1810988148039477387/17FD8F5D9ECB6A39FE66820892B9E2785982999A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5b6db3", "Name": "CardCustom", "Transform": { "posX": -22.4189, "posY": 1.31443286, "posZ": -57.5627, "rotX": 0.0208038464, "rotY": 270.017, "rotZ": 0.0167773049, "scaleX": 0.782302439, "scaleY": 1.0, "scaleZ": 0.782302439 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582800, "SidewaysCard": false, "CustomDeck": { "5828": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168148581/76065FE4934922CE7D0DBBDB3D11B52DB285A226/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1785093056613336403/76423CC141525DDE20AB053EA3F5A3E3BE02C6B4/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7200cf", "Name": "Custom_Model_Bag", "Transform": { "posX": -25.8248978, "posY": 1.26603591, "posZ": -86.91471, "rotX": 359.979156, "rotY": 89.99831, "rotZ": 359.983246, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "starter deck & cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "21a94f", "Name": "Deck", "Transform": { "posX": -25.970253, "posY": 3.39691734, "posZ": -87.61911, "rotX": 0.030081287, "rotY": 270.005951, "rotZ": 0.00527509628, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 582800, 582400, 582500, 582600, 582700 ], "CustomDeck": { "5828": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168109602/222FE08A1F83C602462E3ABE1CB6F64EC1D90A1A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5824": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168105987/67C9651D6740B71082EC8C9EFD3ADB6FF8C6C088/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5825": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168106807/F94579522FD56C039E0759CB9B62A8D03BF55496/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5826": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168107707/EE0AAE2E842113FDA71A8147072A8C003D16B7E8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5827": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168108741/CE08DE060A4FB44BFE41F7E646C872C6EF927C04/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "373b2d", "Name": "CardCustom", "Transform": { "posX": -38.43675, "posY": 1.29983413, "posZ": -87.56279, "rotX": 0.0167713165, "rotY": 179.999939, "rotZ": 359.9792, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582800, "SidewaysCard": false, "CustomDeck": { "5828": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168109602/222FE08A1F83C602462E3ABE1CB6F64EC1D90A1A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1b3cc7", "Name": "CardCustom", "Transform": { "posX": -38.470295, "posY": 1.29881918, "posZ": -90.97093, "rotX": 0.0168198682, "rotY": 179.9997, "rotZ": 359.978851, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582400, "SidewaysCard": false, "CustomDeck": { "5824": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168105987/67C9651D6740B71082EC8C9EFD3ADB6FF8C6C088/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "36837c", "Name": "CardCustom", "Transform": { "posX": -40.7570953, "posY": 1.2981801, "posZ": -90.33447, "rotX": 0.0167713165, "rotY": 179.999939, "rotZ": 359.9792, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582500, "SidewaysCard": false, "CustomDeck": { "5825": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168106807/F94579522FD56C039E0759CB9B62A8D03BF55496/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "481117", "Name": "CardCustom", "Transform": { "posX": -38.5520973, "posY": 1.31325006, "posZ": -93.6978, "rotX": 0.5875625, "rotY": 180.000366, "rotZ": 359.979218, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582600, "SidewaysCard": false, "CustomDeck": { "5826": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168107707/EE0AAE2E842113FDA71A8147072A8C003D16B7E8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "229d74", "Name": "CardCustom", "Transform": { "posX": -40.8001747, "posY": 1.29724014, "posZ": -93.4922256, "rotX": 0.0167714413, "rotY": 179.999939, "rotZ": 359.9792, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582700, "SidewaysCard": false, "CustomDeck": { "5827": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168108741/CE08DE060A4FB44BFE41F7E646C872C6EF927C04/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "9ee819", "Name": "CardCustom", "Transform": { "posX": -25.9346542, "posY": 3.36544943, "posZ": -87.86333, "rotX": 0.0195071325, "rotY": 271.46756, "rotZ": 0.009800014, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582300, "SidewaysCard": false, "CustomDeck": { "5823": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168111020/EE763896AF2E116A286FC48A5C6D8B67F8ED1B11/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5730bd", "Name": "CardCustom", "Transform": { "posX": -26.6543064, "posY": 3.3653307, "posZ": -87.59526, "rotX": 0.0142919477, "rotY": 269.984283, "rotZ": 0.008891617, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582400, "SidewaysCard": false, "CustomDeck": { "5824": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168112407/212094CF2F3DE03A25D34248671886D5FBDCB617/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "73d2da", "Name": "Custom_Model_Bag", "Transform": { "posX": -25.9664974, "posY": 1.27022886, "posZ": -72.41311, "rotX": 359.979156, "rotY": 89.9862, "rotZ": 359.983246, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "starter deck & cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "80ded8", "Name": "CardCustom", "Transform": { "posX": -25.47084, "posY": 3.375661, "posZ": -74.81456, "rotX": 0.0207542833, "rotY": 269.9703, "rotZ": 0.16934672, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 580800, "SidewaysCard": false, "CustomDeck": { "5808": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406122949713978/5178C869A0DF3875823868B5E18705D9AF3BFF15/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dafc4e", "Name": "CardCustom", "Transform": { "posX": -26.9759655, "posY": 3.369565, "posZ": -72.5002441, "rotX": 0.023967078, "rotY": 269.987549, "rotZ": 0.0157864038, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 581600, "SidewaysCard": false, "CustomDeck": { "5816": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406122949712791/ED5CD31047E1F80E9BA9C4CE7CE0BEE0D0F559FE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "7b0461", "Name": "CardCustom", "Transform": { "posX": -19.5429, "posY": 1.31778014, "posZ": -49.6959, "rotX": 0.0208079219, "rotY": 270.003, "rotZ": 0.0167722683, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 300, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1785093056611891599/770DECA9B8A24B416E8F572CA779D6D15644772A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1785093056611891850/ADF8D381BA7219641A0EA75152E98682371935F5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8a8776", "Name": "CardCustom", "Transform": { "posX": -19.639, "posY": 1.31121731, "posZ": -71.9966, "rotX": 0.0208127014, "rotY": 269.9857, "rotZ": 0.0167658143, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 557400, "SidewaysCard": false, "CustomDeck": { "5574": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1785093056613118255/F23B328AC0CBA40420F5F291A86688E4E972A068/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1785093056613118633/2AD670290BBF177286F27631B356D0D609E80357/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9ad519", "Name": "CardCustom", "Transform": { "posX": -22.5767, "posY": 1.31009245, "posZ": -72.195, "rotX": 0.0208087433, "rotY": 269.999939, "rotZ": 0.0167711042, "scaleX": 0.7602123, "scaleY": 1.0, "scaleZ": 0.7602123 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 583500, "SidewaysCard": false, "CustomDeck": { "5835": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1629730253164343453/C53F0E6553E97B7EB4B59C09F8E026C03298A40E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1698406122949711785/A01A3090AC7CB6BB746A76E9FD4190516CCD3970/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9ceaf0", "Name": "Custom_Model_Bag", "Transform": { "posX": -25.6645985, "posY": 1.27686751, "posZ": -50.1079, "rotX": 359.979156, "rotY": 89.99921, "rotZ": 359.983215, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "starter deck & cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "25be59", "Name": "Bag", "Transform": { "posX": -25.5923252, "posY": 3.183853, "posZ": -49.8106079, "rotX": 359.983, "rotY": 0.00203363737, "rotZ": 0.0195813179, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Clanger Upgraded cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9bd943", "Name": "CardCustom", "Transform": { "posX": -18.3024082, "posY": 1.90628278, "posZ": -54.41453, "rotX": -2.650726E-06, "rotY": 269.9955, "rotZ": 8.967566E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 583800, "SidewaysCard": false, "CustomDeck": { "5838": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719858053/14BA883B630AC6172CF8388D086D579F8C659B54/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "500b57", "Name": "CardCustom", "Transform": { "posX": -18.6678333, "posY": 1.90622211, "posZ": -54.395443, "rotX": -1.65531728E-05, "rotY": 270.000031, "rotZ": -0.000289547839, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 584100, "SidewaysCard": false, "CustomDeck": { "5841": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719859929/7A8B1BA69EE771D354ECA065F3A263CE1B7EC872/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b6e946", "Name": "CardCustom", "Transform": { "posX": -19.21154, "posY": 2.08196354, "posZ": -54.31595, "rotX": -0.00170583976, "rotY": 270.009552, "rotZ": 9.253716, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 583900, "SidewaysCard": false, "CustomDeck": { "5839": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719858729/630BCD8D9D90F8CDAFB4728175E5B76016258037/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3accd7", "Name": "CardCustom", "Transform": { "posX": -16.3493671, "posY": 1.93208933, "posZ": -50.022438, "rotX": 359.920135, "rotY": 269.999969, "rotZ": 0.0168716088, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 584200, "SidewaysCard": false, "CustomDeck": { "5842": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719860439/3C01EC263321D966C542968BF59FB10F827F48DA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9d05fd", "Name": "CardCustom", "Transform": { "posX": -29.2374077, "posY": 3.44417739, "posZ": -48.4005623, "rotX": 0.518059731, "rotY": 269.8968, "rotZ": 3.2309413, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 584300, "SidewaysCard": false, "CustomDeck": { "5843": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168188526/1509D70762B60ACC8094200075E3FBD2C2AB28B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "3e4f31", "Name": "Bag", "Transform": { "posX": -25.1957626, "posY": 3.18426037, "posZ": -49.7838745, "rotX": 359.988159, "rotY": 0.000104959421, "rotZ": 0.012673676, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Clanger Level 0 cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "693ad5", "Name": "CardCustom", "Transform": { "posX": -14.8472109, "posY": 2.05362868, "posZ": -51.98962, "rotX": 0.0205586031, "rotY": 270.001343, "rotZ": 358.3164, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 585400, "SidewaysCard": false, "CustomDeck": { "5854": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719868250/78EC00F32FD6FC9FF52B6D131366F8D7C4AAE517/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8b3ddf", "Name": "CardCustom", "Transform": { "posX": -15.5415192, "posY": 2.01980662, "posZ": -57.08337, "rotX": 0.0208085943, "rotY": 270.0, "rotZ": 0.0167709365, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 583700, "SidewaysCard": false, "CustomDeck": { "5837": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719857484/1ED59448D61D8294BBC493FC123FFA94F5F951D8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4ca096", "Name": "CardCustom", "Transform": { "posX": -14.8531351, "posY": 2.0407927, "posZ": -60.9070854, "rotX": 0.8367871, "rotY": 270.001038, "rotZ": 0.0143401772, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 584000, "SidewaysCard": false, "CustomDeck": { "5840": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719859303/0452BA1C5ED3E0CD42582638139F519F4DECF4DA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d4dd1e", "Name": "CardCustom", "Transform": { "posX": -0.130362615, "posY": 3.39931035, "posZ": -45.1098022, "rotX": 359.350525, "rotY": 270.005, "rotZ": 359.203461, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 584300, "SidewaysCard": false, "CustomDeck": { "5843": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168192922/1705182ED8DCCC17EF9CF4C77875930A740D2EBA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "4388c6", "Name": "CardCustom", "Transform": { "posX": -25.9548683, "posY": 3.38312531, "posZ": -49.6042137, "rotX": 0.0208206829, "rotY": 270.021271, "rotZ": 0.01678127, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 583200, "SidewaysCard": false, "CustomDeck": { "5832": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168160750/428A436571BC851B0E68634F91108B938A228799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0eb00", "Name": "Deck", "Transform": { "posX": -25.9739113, "posY": 3.41416621, "posZ": -49.6670876, "rotX": 0.0166676585, "rotY": 269.97348, "rotZ": 0.0134161944, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 584300, 584300, 584300, 584300, 584300 ], "CustomDeck": { "5843": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719863326/F2C63C5722DD401E0083E2CF8E784C348076338F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b90b36", "Name": "CardCustom", "Transform": { "posX": -24.4834061, "posY": 1.31709516, "posZ": -45.8046341, "rotX": 0.0211331528, "rotY": 269.9159, "rotZ": 0.0147635778, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 584300, "SidewaysCard": false, "CustomDeck": { "5843": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719863326/F2C63C5722DD401E0083E2CF8E784C348076338F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1c47f6", "Name": "CardCustom", "Transform": { "posX": -24.674427, "posY": 1.35437822, "posZ": -45.74052, "rotX": 0.02933062, "rotY": 269.9159, "rotZ": 0.00680540875, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 584300, "SidewaysCard": false, "CustomDeck": { "5843": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719863326/F2C63C5722DD401E0083E2CF8E784C348076338F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b90b36", "Name": "CardCustom", "Transform": { "posX": -24.6744175, "posY": 1.38166833, "posZ": -45.74051, "rotX": 0.0196202081, "rotY": 269.9159, "rotZ": 0.0158432852, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 584300, "SidewaysCard": false, "CustomDeck": { "5843": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719863326/F2C63C5722DD401E0083E2CF8E784C348076338F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b90b36", "Name": "CardCustom", "Transform": { "posX": -24.6744175, "posY": 1.40342629, "posZ": -45.7405167, "rotX": 0.0206231475, "rotY": 269.9159, "rotZ": 0.0165851284, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 584300, "SidewaysCard": false, "CustomDeck": { "5843": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719863326/F2C63C5722DD401E0083E2CF8E784C348076338F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b90b36", "Name": "CardCustom", "Transform": { "posX": -24.6744213, "posY": 1.41112268, "posZ": -45.7405167, "rotX": 0.020485336, "rotY": 269.9159, "rotZ": 0.0164839756, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 584300, "SidewaysCard": false, "CustomDeck": { "5843": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719863326/F2C63C5722DD401E0083E2CF8E784C348076338F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "17e9b0", "Name": "CardCustom", "Transform": { "posX": -25.7589264, "posY": 3.38585949, "posZ": -49.0217361, "rotX": 0.000690819637, "rotY": 270.000244, "rotZ": 0.08430452, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 583100, "SidewaysCard": false, "CustomDeck": { "5831": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168159839/07A44D1CEBC4F74EA075CCE7862EAB40E771A0CC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "c1f881", "Name": "CardCustom", "Transform": { "posX": -22.497, "posY": 1.30797017, "posZ": -79.5444, "rotX": 0.02080423, "rotY": 270.0158, "rotZ": 0.0167770125, "scaleX": 0.7602123, "scaleY": 1.0, "scaleZ": 0.7602123 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 582200, "SidewaysCard": false, "CustomDeck": { "5822": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1698406330168097272/653B3C18959E8C35F85EFD19D65FB12E3EC702E9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1785092789062340099/64DB955D70D1A383EBF62F12756F6BB52B717582/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d213c3", "Name": "CardCustom", "Transform": { "posX": -19.3052, "posY": 1.30918944, "posZ": -79.339, "rotX": 0.0208067335, "rotY": 270.0067, "rotZ": 0.016773222, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 557200, "SidewaysCard": false, "CustomDeck": { "5572": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1785092789062345703/EA075F403A44DD79F4CDB26E129F7748D9B45820/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1785092789062345962/354781DD70B4FBED893571EB89FCC2841543BE70/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dc27c7", "Name": "Custom_Model_Bag", "Transform": { "posX": -25.8463974, "posY": 1.27229786, "posZ": -65.49501, "rotX": 359.979156, "rotY": 89.9999, "rotZ": 359.983246, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "starter deck & cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "0d520d", "Name": "CardCustom", "Transform": { "posX": -26.0582352, "posY": 3.37816644, "posZ": -65.58652, "rotX": 0.02408175, "rotY": 269.8806, "rotZ": 0.008338909, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 590900, "SidewaysCard": false, "CustomDeck": { "5909": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719920179/AC3CC88DA32E01E90DD98DCD654E693C91668DDA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "77c4af", "Name": "CardCustom", "Transform": { "posX": -26.0691681, "posY": 3.37823582, "posZ": -65.43076, "rotX": 0.02002347, "rotY": 269.991028, "rotZ": 0.009250088, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 590800, "SidewaysCard": false, "CustomDeck": { "5908": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719919594/B2410DF48013BB6931B38D03BE436781154F76DF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "821f81", "Name": "CardCustom", "Transform": { "posX": -25.48633, "posY": 3.37814021, "posZ": -65.963295, "rotX": 0.02075036, "rotY": 269.972137, "rotZ": 0.0167228617, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 591000, "SidewaysCard": false, "CustomDeck": { "5910": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1781731125719920942/DA5447F6BE85F641F4925735A8290C7FCCFF1729/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660102961722591415/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }