{ "GUID": "33272e", "Name": "Custom_Model_Bag", "Transform": { "posX": 0.269851536, "posY": 1.48960686, "posZ": 28.776968, "rotX": 359.920135, "rotY": 269.999939, "rotZ": 0.0168761145, "scaleX": 1.3633405, "scaleY": 0.2837723, "scaleZ": 1.49288893 }, "Nickname": "Gender Swapped Investigators", "Description": "By /u/corpboy", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1597044073919531303/A7A92208CADC509C2546E65242ADDC8EF88FEAB8/", "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\":{\"169f5f\":{\"lock\":false,\"pos\":{\"x\":-19.3000202178955,\"y\":1.35298359394073,\"z\":-53.4358367919922},\"rot\":{\"x\":0.02080955542624,\"y\":270.001556396484,\"z\":0.0167712271213531}},\"1abe52\":{\"lock\":false,\"pos\":{\"x\":-19.2997913360596,\"y\":1.34861159324646,\"z\":-84.8181838989258},\"rot\":{\"x\":0.020808843895793,\"y\":270.000122070313,\"z\":0.0167707651853561}},\"23ea9a\":{\"lock\":false,\"pos\":{\"x\":-16.6402473449707,\"y\":1.3495774269104,\"z\":-84.8182144165039},\"rot\":{\"x\":0.0208143834024668,\"y\":269.999816894531,\"z\":0.0167734380811453}},\"260c46\":{\"lock\":false,\"pos\":{\"x\":-16.6403007507324,\"y\":1.34937584400177,\"z\":-69.0603103637695},\"rot\":{\"x\":0.0208140630275011,\"y\":270.000244140625,\"z\":0.0167755950242281}},\"6b77d7\":{\"lock\":false,\"pos\":{\"x\":-16.8499145507813,\"y\":1.30698132514954,\"z\":-91.5999984741211},\"rot\":{\"x\":0.0208082087337971,\"y\":270.000122070313,\"z\":0.0167680568993092}},\"6be340\":{\"lock\":false,\"pos\":{\"x\":-19.3000755310059,\"y\":1.35551571846008,\"z\":-61.2332572937012},\"rot\":{\"x\":0.0208098944276571,\"y\":269.999114990234,\"z\":0.0167708061635494}},\"77ba63\":{\"lock\":false,\"pos\":{\"x\":-22.6157627105713,\"y\":1.3086873292923,\"z\":-76.946044921875},\"rot\":{\"x\":0.0208086930215359,\"y\":270.000091552734,\"z\":0.0167710520327091}},\"7c3d2e\":{\"lock\":false,\"pos\":{\"x\":-19.293607711792,\"y\":1.35573351383209,\"z\":-76.9415588378906},\"rot\":{\"x\":0.0208112671971321,\"y\":269.999816894531,\"z\":0.0167707577347755}},\"7d5120\":{\"lock\":false,\"pos\":{\"x\":-22.6139030456543,\"y\":1.31556940078735,\"z\":-53.4381294250488},\"rot\":{\"x\":0.0208085980266333,\"y\":270.000030517578,\"z\":180.01676940918}},\"981000\":{\"lock\":false,\"pos\":{\"x\":-16.6400699615479,\"y\":1.35396289825439,\"z\":-53.3904228210449},\"rot\":{\"x\":0.0208099316805601,\"y\":270.000030517578,\"z\":0.0167689602822065}},\"b5091c\":{\"lock\":false,\"pos\":{\"x\":-26.3147144317627,\"y\":1.30734384059906,\"z\":-76.9476318359375},\"rot\":{\"x\":0.0208098907023668,\"y\":269.99560546875,\"z\":0.0167696326971054}},\"c61dd3\":{\"lock\":false,\"pos\":{\"x\":-16.6400871276855,\"y\":1.3564817905426,\"z\":-61.2309913635254},\"rot\":{\"x\":0.0208104159682989,\"y\":269.999847412109,\"z\":0.0167675204575062}},\"d8bab9\":{\"lock\":false,\"pos\":{\"x\":-19.2999992370605,\"y\":1.32235062122345,\"z\":-91.5984573364258},\"rot\":{\"x\":0.0208081062883139,\"y\":270.000061035156,\"z\":0.0167712885886431}},\"e22086\":{\"lock\":false,\"pos\":{\"x\":-16.6396045684814,\"y\":1.35669600963593,\"z\":-76.9456558227539},\"rot\":{\"x\":0.0208145752549171,\"y\":269.999847412109,\"z\":0.0167776327580214}},\"eff7e4\":{\"lock\":false,\"pos\":{\"x\":-19.2958831787109,\"y\":1.3484114408493,\"z\":-69.0607070922852},\"rot\":{\"x\":0.0208063907921314,\"y\":270.008483886719,\"z\":0.016773846000433}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "d8bab9", "Name": "Deck", "Transform": { "posX": -19.3, "posY": 1.32255673, "posZ": -91.59846, "rotX": 0.020809263, "rotY": 270.000061, "rotZ": 0.0167710278, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "Neutrals", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 548000, 548100 ], "CustomDeck": { "5480": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033535236/8BFCE853D4514678F245CD68628422F8F4526F7A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033534853/A9AD8A7E85A60DCD91892E4F7CC585DFF5E8AE51/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5481": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033536074/1777C912EE206E680559C210FEA103D6BDD40FA2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033535820/F890AD873C7CD3776B176DB65F4C48E6980811EF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "cd464a", "Name": "CardCustom", "Transform": { "posX": -7.000006, "posY": 0.973604858, "posZ": -6.99998474, "rotX": -8.668456E-08, "rotY": 179.968414, "rotZ": -9.698113E-08, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "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": 548000, "SidewaysCard": false, "CustomDeck": { "5480": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033535236/8BFCE853D4514678F245CD68628422F8F4526F7A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033534853/A9AD8A7E85A60DCD91892E4F7CC585DFF5E8AE51/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "040a7a", "Name": "CardCustom", "Transform": { "posX": -7.0, "posY": 1.01233482, "posZ": -7.0, "rotX": -1.66786208E-07, "rotY": 179.968414, "rotZ": -1.21242238E-07, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "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": 548100, "SidewaysCard": false, "CustomDeck": { "5481": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033536074/1777C912EE206E680559C210FEA103D6BDD40FA2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033535820/F890AD873C7CD3776B176DB65F4C48E6980811EF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "6b77d7", "Name": "CardCustom", "Transform": { "posX": -16.8499146, "posY": 1.30649221, "posZ": -91.6, "rotX": 0.020809019, "rotY": 270.000122, "rotZ": 0.0167710837, "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": 551900, "SidewaysCard": false, "CustomDeck": { "5519": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305463382/ECC00CDCB670C2EBB2D0D9C3C5906BE6C1FE62BF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305463006/6A6842C41DB960191D9FA633FD677F79A0907470/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "23ea9a", "Name": "Deck", "Transform": { "posX": -16.6402473, "posY": 1.34957755, "posZ": -84.8182144, "rotX": 0.0208102874, "rotY": 269.999817, "rotZ": 0.0167703852, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "Survivor Mini-cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 553200, 552600, 552900, 550900, 553500, 550600, 552500 ], "CustomDeck": { "5532": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305490050/B0A12F183F93AADB9F7DFD9F5D9A87EA6BD727E4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305489804/87407110DB43ECCBE2EE5CE643AFBE0372C3AAFB/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5526": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305482311/3188E0EEB3D5EE1947ABEB809E3B079214703817/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305482042/40E895D1AE0CCDE99C431640EA47BAF64270D6C7/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5529": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305486928/60CC8C425ADB9336B96072A235198E5519685D40/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305486395/AA43AC97847088CA98A9F80BF490E5D78AD7BAED/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5509": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305444714/641F45B972F7E1F23A783C2ACC759732EC9D5D53/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305443939/74C040BBB90E43DFE9C21930B90514746C94868D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5535": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305493219/E2606C1A65CAE2101667DF11BD27CDDD25D8254B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305493016/1AFFDFC2E8B8C21084CC0B9D284DC3280ADE66FA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5506": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305435404/94B28CF301ACD5CE37E25F0041C857E297FEAB40/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305434859/589DF586FD7594280E069595BA2EB40C331B71DF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5525": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305481176/43F29B21015DD92C48199E1AB090701A68785CE5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305476474/B3F33D9462C8CDAC8591C310CF0A25F0883EBF0A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "c19cf3", "Name": "CardCustom", "Transform": { "posX": -11.0, "posY": 1.08676159, "posZ": -11.0, "rotX": -8.67157155E-08, "rotY": 180.0, "rotZ": 180.115829, "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": false, "Hands": false, "CardID": 553200, "SidewaysCard": false, "CustomDeck": { "5532": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305490050/B0A12F183F93AADB9F7DFD9F5D9A87EA6BD727E4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305489804/87407110DB43ECCBE2EE5CE643AFBE0372C3AAFB/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7f5a59", "Name": "CardCustom", "Transform": { "posX": -19.0, "posY": 1.07665193, "posZ": -1.0, "rotX": -1.18927062E-07, "rotY": 180.0, "rotZ": 180.082748, "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": 552600, "SidewaysCard": false, "CustomDeck": { "5526": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305482311/3188E0EEB3D5EE1947ABEB809E3B079214703817/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305482042/40E895D1AE0CCDE99C431640EA47BAF64270D6C7/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fb9fd9", "Name": "CardCustom", "Transform": { "posX": -19.0, "posY": 1.0655607, "posZ": -1.0, "rotX": 5.566992E-08, "rotY": 180.0, "rotZ": 179.993484, "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": 552900, "SidewaysCard": false, "CustomDeck": { "5529": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305486928/60CC8C425ADB9336B96072A235198E5519685D40/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305486395/AA43AC97847088CA98A9F80BF490E5D78AD7BAED/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6eeb6b", "Name": "CardCustom", "Transform": { "posX": -19.0, "posY": 1.05594194, "posZ": -1.0, "rotX": -8.391455E-08, "rotY": 180.0, "rotZ": 179.993179, "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": 550900, "SidewaysCard": false, "CustomDeck": { "5509": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305444714/641F45B972F7E1F23A783C2ACC759732EC9D5D53/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305443939/74C040BBB90E43DFE9C21930B90514746C94868D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b296b7", "Name": "CardCustom", "Transform": { "posX": -19.0, "posY": 1.046311, "posZ": -1.0, "rotX": 8.29845E-07, "rotY": 180.0, "rotZ": 179.993286, "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": false, "Hands": false, "CardID": 553500, "SidewaysCard": false, "CustomDeck": { "5535": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305493219/E2606C1A65CAE2101667DF11BD27CDDD25D8254B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305493016/1AFFDFC2E8B8C21084CC0B9D284DC3280ADE66FA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9922ea", "Name": "CardCustom", "Transform": { "posX": -19.0, "posY": 1.015182, "posZ": -1.0, "rotX": 2.98382452E-06, "rotY": 180.0, "rotZ": 180.179245, "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": 550600, "SidewaysCard": false, "CustomDeck": { "5506": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305435404/94B28CF301ACD5CE37E25F0041C857E297FEAB40/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305434859/589DF586FD7594280E069595BA2EB40C331B71DF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2b732f", "Name": "CardCustom", "Transform": { "posX": -19.0001469, "posY": 0.9736048, "posZ": -0.999999046, "rotX": 3.477949E-06, "rotY": 179.999649, "rotZ": 180.0, "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": 552500, "SidewaysCard": false, "CustomDeck": { "5525": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305481176/43F29B21015DD92C48199E1AB090701A68785CE5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305476474/B3F33D9462C8CDAC8591C310CF0A25F0883EBF0A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "1abe52", "Name": "Deck", "Transform": { "posX": -19.2997913, "posY": 1.34861171, "posZ": -84.8181839, "rotX": 0.0208098, "rotY": 270.000122, "rotZ": 0.0167709682, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "Survivors", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 549300, 546300, 546500, 553800, 549900, 549200, 550000 ], "CustomDeck": { "5493": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033553050/A03FDCC2CB1FF81426980E4D81E23C59CFCBEADF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033552700/A03035BB1A43889FBF6485FAEB59DDFF2F78DEED/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5463": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033512114/BC14070FD45AC90354E2001F66BF2ADFCEC0DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033511870/65264970BDAFF00D51B77E32B50F13E2DCDEA576/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5465": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033514530/2E91016D98DA168FF609BB2698F6B5385088AB4F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033514267/A7821B794D30A3A89DFA2C0EE0F31E9FF7988E6D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5538": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305559563/C4C40D8D867B8CDB333F34FC60812545E2AAF494/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305560098/680C4FFFFAE7E75F3FA386779F57BAE7B179C725/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5499": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033560676/7798EAE6233DF6221642CC93EFC50B82938711FB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033560328/E2B502EA712FC8CD736657FBF6A1BF6C879A85A5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033552072/73EB29648CF30725DBA3EC5EF5385FC75D988EA7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033551635/192DD57B3883473B8CC159D5E878DB12E0764427/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5500": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033562120/413DCFD8832BE25F575FDC027D974CC431C705C5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033561638/E16A6B940D506A92F2485999CB09FC0EA5309D4C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "f1cf1d", "Name": "CardCustom", "Transform": { "posX": -5.0, "posY": 1.09519565, "posZ": -11.0, "rotX": -3.693703E-05, "rotY": 180.0, "rotZ": 180.257538, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 549300, "SidewaysCard": false, "CustomDeck": { "5493": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033553050/A03FDCC2CB1FF81426980E4D81E23C59CFCBEADF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033552700/A03035BB1A43889FBF6485FAEB59DDFF2F78DEED/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8a3b48", "Name": "CardCustom", "Transform": { "posX": -13.0000381, "posY": 1.01254606, "posZ": -1.0, "rotX": 2.42759256E-06, "rotY": 180.0, "rotZ": 179.992615, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 546300, "SidewaysCard": false, "CustomDeck": { "5463": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033512114/BC14070FD45AC90354E2001F66BF2ADFCEC0DFE3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033511870/65264970BDAFF00D51B77E32B50F13E2DCDEA576/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2d9dfb", "Name": "CardCustom", "Transform": { "posX": -13.0, "posY": 1.05857325, "posZ": -1.0, "rotX": -1.25687684E-05, "rotY": 180.0, "rotZ": 180.045837, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 546500, "SidewaysCard": false, "CustomDeck": { "5465": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033514530/2E91016D98DA168FF609BB2698F6B5385088AB4F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033514267/A7821B794D30A3A89DFA2C0EE0F31E9FF7988E6D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d7e878", "Name": "CardCustom", "Transform": { "posX": -13.0, "posY": 1.08831573, "posZ": -1.0, "rotX": 1.10557814E-07, "rotY": 180.0, "rotZ": 180.383514, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "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": 553800, "SidewaysCard": false, "CustomDeck": { "5538": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305559563/C4C40D8D867B8CDB333F34FC60812545E2AAF494/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305560098/680C4FFFFAE7E75F3FA386779F57BAE7B179C725/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "971b8a", "Name": "CardCustom", "Transform": { "posX": -12.9344807, "posY": 0.9736048, "posZ": -1.00099123, "rotX": 7.02964144E-07, "rotY": 180.0009, "rotZ": 180.0, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 549900, "SidewaysCard": false, "CustomDeck": { "5499": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033560676/7798EAE6233DF6221642CC93EFC50B82938711FB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033560328/E2B502EA712FC8CD736657FBF6A1BF6C879A85A5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b040e1", "Name": "CardCustom", "Transform": { "posX": -13.0, "posY": 1.06625843, "posZ": -1.0, "rotX": -1.88612353E-06, "rotY": 180.0, "rotZ": 180.007111, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 549200, "SidewaysCard": false, "CustomDeck": { "5492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033552072/73EB29648CF30725DBA3EC5EF5385FC75D988EA7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033551635/192DD57B3883473B8CC159D5E878DB12E0764427/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a2d68d", "Name": "CardCustom", "Transform": { "posX": -13.0000362, "posY": 1.04641175, "posZ": -1.0, "rotX": 1.53511917E-06, "rotY": 180.0, "rotZ": 179.993057, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 550000, "SidewaysCard": false, "CustomDeck": { "5500": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033562120/413DCFD8832BE25F575FDC027D974CC431C705C5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033561638/E16A6B940D506A92F2485999CB09FC0EA5309D4C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "e22086", "Name": "Deck", "Transform": { "posX": -16.6396046, "posY": 1.35669625, "posZ": -76.9456558, "rotX": 0.0208102185, "rotY": 269.999847, "rotZ": 0.0167700518, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "Mystic Mini-cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 551200, 552000, 552100, 551100, 552200, 550200, 551600, 550400 ], "CustomDeck": { "5512": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305451976/BA9E81A02D8EC2C98AA855AF1F280E9A7D0A656E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305451550/30A9D10C13F85A5DCA974710B40F8269AE633608/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5520": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305464831/1AD9689F154F38A4C85E27CD742C57EC6B7A279B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305464478/DF733DA6149022C4BB81DAA98690BAF4E883214B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5521": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305467029/3C76329F1D655FB9366D899438D45FCA71EC4395/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305466706/B9CD867F513338D10E8452F77260735C0C1F9CFC/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5511": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305450092/932C0A8ED98E36690F96E83B236A79398D14C430/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305449463/5C4AAFC84AF2831D3F008A24784C3E77A048B500/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5522": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305470329/54EF630FB29B991F09F58CE4F60EF39B90F8905C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305470018/48F901700847C4DF483B9CA83A2B9A5A29AA0EA0/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5502": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305427161/CAA432B477CD83F6CC8370F07903274CD1E84406/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305427733/05FDEE6EC17C581B32588DCFDF8AAD8B539279D7/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5516": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305458429/8A8FD80EEE9F7CDD6DF9B26F07D0E1CD0DA9F334/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305458184/D323A0D7D4B0D7482B0E25AF6C23F5B6EEA1EBF5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5504": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305432546/6D19B8DF340536A7FC0D0E5AFD02F2E7747A8F99/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305432257/228BD6A1284408B506CD029504627B9582D603AA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "c1f0ad", "Name": "CardCustom", "Transform": { "posX": -11.0, "posY": 1.0951761, "posZ": 5.0, "rotX": -1.82826938E-07, "rotY": 180.0, "rotZ": 180.03653, "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": 551200, "SidewaysCard": false, "CustomDeck": { "5512": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305451976/BA9E81A02D8EC2C98AA855AF1F280E9A7D0A656E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305451550/30A9D10C13F85A5DCA974710B40F8269AE633608/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6a5e51", "Name": "CardCustom", "Transform": { "posX": -11.0, "posY": 1.08570266, "posZ": 5.0, "rotX": -2.19853916E-07, "rotY": 180.0, "rotZ": 180.045837, "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": 552000, "SidewaysCard": false, "CustomDeck": { "5520": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305464831/1AD9689F154F38A4C85E27CD742C57EC6B7A279B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305464478/DF733DA6149022C4BB81DAA98690BAF4E883214B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "39b94a", "Name": "CardCustom", "Transform": { "posX": -11.0, "posY": 1.075198, "posZ": 5.0, "rotX": 1.16605335E-07, "rotY": 180.0, "rotZ": 179.993179, "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": 552100, "SidewaysCard": false, "CustomDeck": { "5521": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305467029/3C76329F1D655FB9366D899438D45FCA71EC4395/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305466706/B9CD867F513338D10E8452F77260735C0C1F9CFC/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a265a7", "Name": "CardCustom", "Transform": { "posX": -11.0, "posY": 1.0686419, "posZ": 5.0, "rotX": 6.453976E-08, "rotY": 180.0, "rotZ": 180.203918, "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": 551100, "SidewaysCard": false, "CustomDeck": { "5511": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305450092/932C0A8ED98E36690F96E83B236A79398D14C430/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305449463/5C4AAFC84AF2831D3F008A24784C3E77A048B500/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "272f74", "Name": "CardCustom", "Transform": { "posX": -11.0, "posY": 1.05592513, "posZ": 5.0, "rotX": -2.690665E-07, "rotY": 180.0, "rotZ": 179.993713, "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": 552200, "SidewaysCard": false, "CustomDeck": { "5522": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305470329/54EF630FB29B991F09F58CE4F60EF39B90F8905C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305470018/48F901700847C4DF483B9CA83A2B9A5A29AA0EA0/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d7e131", "Name": "CardCustom", "Transform": { "posX": -11.0, "posY": 1.04755557, "posZ": 5.0, "rotX": -1.656553E-06, "rotY": 180.0, "rotZ": 180.068848, "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": 550200, "SidewaysCard": false, "CustomDeck": { "5502": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305427161/CAA432B477CD83F6CC8370F07903274CD1E84406/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305427733/05FDEE6EC17C581B32588DCFDF8AAD8B539279D7/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a53b45", "Name": "CardCustom", "Transform": { "posX": -11.0, "posY": 1.01240456, "posZ": 5.0, "rotX": -2.474727E-07, "rotY": 180.0, "rotZ": 179.99321, "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": 551600, "SidewaysCard": false, "CustomDeck": { "5516": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305458429/8A8FD80EEE9F7CDD6DF9B26F07D0E1CD0DA9F334/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305458184/D323A0D7D4B0D7482B0E25AF6C23F5B6EEA1EBF5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bdadb1", "Name": "CardCustom", "Transform": { "posX": -11.0, "posY": 0.9736048, "posZ": 5.0, "rotX": -9.37172047E-08, "rotY": 180.0, "rotZ": 180.0, "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": 550400, "SidewaysCard": false, "CustomDeck": { "5504": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305432546/6D19B8DF340536A7FC0D0E5AFD02F2E7747A8F99/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305432257/228BD6A1284408B506CD029504627B9582D603AA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "7c3d2e", "Name": "Deck", "Transform": { "posX": -19.2936077, "posY": 1.35573351, "posZ": -76.94156, "rotX": 0.0208100677, "rotY": 269.999817, "rotZ": 0.01677074, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "Mystics", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 546600, 548200, 548500, 546800, 547100, 546200, 547600, 546100 ], "CustomDeck": { "5466": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033515404/DAE5BA53857DEFB7737F8B2E0254CD63BCE267C2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033515168/3A4F677B233CDADDA7A804EB26E485D8D66DC73F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5482": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033536963/55F6362A3DF57E17BD1B99ED7FFF22873B0C84DC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033536659/73E61F8BEC3A0598FC571EE317940C3691D6E92E/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5485": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033541190/81660B9AE0050D8B715CE61A78B9A2881830673B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033540895/102019F80AAA270FD6C7B36BB30EF3F7D9E19FCF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5468": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033523481/223BC6A3ECF7312DFE291E2A8E0A03AB439FE097/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033523196/6CD77214EAB720F21F51364B7CC703658E86EF3A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5471": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033528922/2354D25B85F172EA29514E54E2ED38A3DEE5A01F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033528583/413E142A6CA6E66117E0DC14508DE3B5CA0C7A86/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5462": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033511249/093833DAE46077535638977EBA5E655B7AE05CB8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033511071/1810AE4572140907A7311D63066025E340DB3238/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5476": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033531085/DDA7F912DD442FF5BAD2BD3E618F251F91B8CCDE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033530840/DD1841CF1B2F1840563B4DCE708B5BCF10BAA7A3/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5461": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033509958/B8D9E2BF2BEAAF65793731F34EB3184B82B17EEF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033510149/55AC51A928EF952A75DEF915ACA87446D6FCFB0B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "a29aa3", "Name": "CardCustom", "Transform": { "posX": -7.0, "posY": 1.10533, "posZ": 5.0, "rotX": -4.83128279E-05, "rotY": 180.0, "rotZ": 180.2904, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 546600, "SidewaysCard": false, "CustomDeck": { "5466": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033515404/DAE5BA53857DEFB7737F8B2E0254CD63BCE267C2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033515168/3A4F677B233CDADDA7A804EB26E485D8D66DC73F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "64df1a", "Name": "CardCustom", "Transform": { "posX": -7.0, "posY": 1.097725, "posZ": 5.0, "rotX": -0.000113685572, "rotY": 180.0, "rotZ": 180.469879, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 548200, "SidewaysCard": false, "CustomDeck": { "5482": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033536963/55F6362A3DF57E17BD1B99ED7FFF22873B0C84DC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033536659/73E61F8BEC3A0598FC571EE317940C3691D6E92E/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "61cd02", "Name": "CardCustom", "Transform": { "posX": -7.0, "posY": 1.07573, "posZ": 5.0, "rotX": -6.29947463E-05, "rotY": 180.0, "rotZ": 179.919983, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 548500, "SidewaysCard": false, "CustomDeck": { "5485": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033541190/81660B9AE0050D8B715CE61A78B9A2881830673B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033540895/102019F80AAA270FD6C7B36BB30EF3F7D9E19FCF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "895899", "Name": "CardCustom", "Transform": { "posX": -7.0, "posY": 1.0667367, "posZ": 5.0, "rotX": -4.52238964E-06, "rotY": 180.0, "rotZ": 180.015915, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 546800, "SidewaysCard": false, "CustomDeck": { "5468": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033523481/223BC6A3ECF7312DFE291E2A8E0A03AB439FE097/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033523196/6CD77214EAB720F21F51364B7CC703658E86EF3A/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5ec4ea", "Name": "CardCustom", "Transform": { "posX": -7.0, "posY": 1.05615163, "posZ": 5.0, "rotX": 4.368572E-08, "rotY": 180.0, "rotZ": 179.999374, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 547100, "SidewaysCard": false, "CustomDeck": { "5471": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033528922/2354D25B85F172EA29514E54E2ED38A3DEE5A01F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033528583/413E142A6CA6E66117E0DC14508DE3B5CA0C7A86/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2b5e07", "Name": "CardCustom", "Transform": { "posX": -7.0, "posY": 1.05057776, "posZ": 5.0, "rotX": -2.32067523E-05, "rotY": 180.0, "rotZ": 180.082748, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 546200, "SidewaysCard": false, "CustomDeck": { "5462": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033511249/093833DAE46077535638977EBA5E655B7AE05CB8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033511071/1810AE4572140907A7311D63066025E340DB3238/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0f8cb4", "Name": "CardCustom", "Transform": { "posX": -7.0, "posY": 1.01252425, "posZ": 5.0, "rotX": -4.45017349E-06, "rotY": 180.0, "rotZ": 179.993225, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 547600, "SidewaysCard": false, "CustomDeck": { "5476": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033531085/DDA7F912DD442FF5BAD2BD3E618F251F91B8CCDE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033530840/DD1841CF1B2F1840563B4DCE708B5BCF10BAA7A3/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "42e6fa", "Name": "CardCustom", "Transform": { "posX": -44.2246628, "posY": 1.43376875, "posZ": -64.14601, "rotX": 0.016629057, "rotY": 269.996521, "rotZ": 0.0133992732, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 546100, "SidewaysCard": false, "CustomDeck": { "5461": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033509958/B8D9E2BF2BEAAF65793731F34EB3184B82B17EEF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033510149/55AC51A928EF952A75DEF915ACA87446D6FCFB0B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "77ba63", "Name": "CardCustom", "Transform": { "posX": -22.6157627, "posY": 1.30868757, "posZ": -76.9460449, "rotX": 0.0208084341, "rotY": 270.0001, "rotZ": 0.0167712029, "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": 547700, "SidewaysCard": false, "CustomDeck": { "5477": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033531975/716148281BAF39E8297B86614A2694CE21429FD9/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b5091c", "Name": "CardCustom", "Transform": { "posX": -26.3147144, "posY": 1.30734384, "posZ": -76.94763, "rotX": 0.0208099149, "rotY": 269.9956, "rotZ": 0.0167697258, "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": 546700, "SidewaysCard": false, "CustomDeck": { "5467": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033517434/A7ABD7EAE382973E3DABDEB821E26D441D82FA8B/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eff7e4", "Name": "Deck", "Transform": { "posX": -19.2958832, "posY": 1.34841144, "posZ": -69.06071, "rotX": 0.0208073743, "rotY": 270.008484, "rotZ": 0.0167739913, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "Rogues", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 549700, 548900, 547000, 549500, 547500, 549400 ], "CustomDeck": { "5497": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033558013/058FCAEB8FCF7FAF40B3B96D50B8F0F7D7D90120/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033557441/1CFFB5C8B8E3FD2F7BF595C95F2FE39F47F28654/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5489": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033547523/80D8A073B461737557CD68E4075EF34725439C9E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033547037/0490FC8DC4CC3AA874B3FBE9A21538DAF09EAC8F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5470": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033526917/49FDF3E4E341C3D5E610C3C2CE4DB53279EE04A8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033526653/B8443FB7097039A3E07E5299ABBBFB2AD356C84F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5495": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033555324/8BDBACB8D427119D57E9412C37E828E5E557049B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033554988/EDE794A8D12D3E5941AD8C65969A0A8E4B2D191E/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5475": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033530191/975A4C5C2FC00F21E5CE5F1F97A53C77C9089786/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033529849/DA2CABB1966CCFADFC8C00E4AEAE5658147DE96F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5494": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033554145/6C758936EFD2361C0FB62EC7D3BB289854DD7B9B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033553780/8029A7EFDD1C6CAFAC7596CEA10F451D5F9A01C6/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "80aa36", "Name": "CardCustom", "Transform": { "posX": 17.00002, "posY": 1.07569873, "posZ": 5.0, "rotX": -1.21785592E-06, "rotY": 180.0, "rotZ": 180.00386, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 549700, "SidewaysCard": false, "CustomDeck": { "5497": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033558013/058FCAEB8FCF7FAF40B3B96D50B8F0F7D7D90120/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033557441/1CFFB5C8B8E3FD2F7BF595C95F2FE39F47F28654/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c7fa75", "Name": "CardCustom", "Transform": { "posX": 17.0, "posY": 1.06567848, "posZ": 5.0, "rotX": -6.74209957E-07, "rotY": 180.0, "rotZ": 179.993423, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 548900, "SidewaysCard": false, "CustomDeck": { "5489": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033547523/80D8A073B461737557CD68E4075EF34725439C9E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033547037/0490FC8DC4CC3AA874B3FBE9A21538DAF09EAC8F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2ec5ce", "Name": "CardCustom", "Transform": { "posX": 17.000433, "posY": 1.064686, "posZ": 5.0, "rotX": 0.00140645355, "rotY": 180.000015, "rotZ": 180.2034, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 547000, "SidewaysCard": false, "CustomDeck": { "5470": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033526917/49FDF3E4E341C3D5E610C3C2CE4DB53279EE04A8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033526653/B8443FB7097039A3E07E5299ABBBFB2AD356C84F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4593da", "Name": "CardCustom", "Transform": { "posX": 17.0001621, "posY": 1.04850614, "posZ": 5.0, "rotX": -1.07842707E-05, "rotY": 180.0, "rotZ": 180.03653, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 549500, "SidewaysCard": false, "CustomDeck": { "5495": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033555324/8BDBACB8D427119D57E9412C37E828E5E557049B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033554988/EDE794A8D12D3E5941AD8C65969A0A8E4B2D191E/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "433bf3", "Name": "CardCustom", "Transform": { "posX": 17.0004025, "posY": 1.02266586, "posZ": 5.0, "rotX": 0.003572354, "rotY": 180.000046, "rotZ": 180.255447, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 547500, "SidewaysCard": false, "CustomDeck": { "5475": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033530191/975A4C5C2FC00F21E5CE5F1F97A53C77C9089786/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033529849/DA2CABB1966CCFADFC8C00E4AEAE5658147DE96F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f4d67c", "Name": "CardCustom", "Transform": { "posX": 16.9971142, "posY": 0.9736048, "posZ": 4.999879, "rotX": 6.67025859E-07, "rotY": 180.000549, "rotZ": 180.0, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 549400, "SidewaysCard": false, "CustomDeck": { "5494": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033554145/6C758936EFD2361C0FB62EC7D3BB289854DD7B9B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033553780/8029A7EFDD1C6CAFAC7596CEA10F451D5F9A01C6/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "260c46", "Name": "Deck", "Transform": { "posX": -16.6403, "posY": 1.34937608, "posZ": -69.06031, "rotX": 0.020809643, "rotY": 270.000244, "rotZ": 0.016770171, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "Rogue Mini-cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 553400, 552700, 551400, 553000, 551700, 550800 ], "CustomDeck": { "5534": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305492276/4FFB8FE86D6475504AB383128BD9F4DC86D8ECA8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305492010/DDAEDA950BB51BFB69F900CF9FB588DAE4746F95/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5527": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305483336/DA75388605A047BE33638886170BFBCC69DB09DD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305483055/7D7F9D8127DF17EF9079D0A498EE7F0BC9390F57/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5514": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305455864/6A84A9FE51B1F148834502596C61459753FC8CE1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305455512/587DE59EE1DB5ADA7A53F700101B7C355EF6CF23/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5530": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305487961/08042DB4A15FDAD7B6661F3B70690ED566486BDE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305487713/4545F6E6AC6C9F2278D912A66632104A0930247B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5517": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305461176/CA3261B3142A26D4FD4E609D464FB915C2986969/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305460807/BC8F827385E718C638DD80D66CEE757857C0B3D1/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5508": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305436737/D71C14F3E9567CE3AF9C928CB3B20F9E059222BD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305439478/FBF77FFC48494194E6685404DC9D5149AC36DF1B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "6f56bb", "Name": "CardCustom", "Transform": { "posX": 13.0, "posY": 1.07513273, "posZ": 5.0, "rotX": -0.0009060671, "rotY": 180.0, "rotZ": 180.001556, "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": false, "Hands": false, "CardID": 553400, "SidewaysCard": false, "CustomDeck": { "5534": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305492276/4FFB8FE86D6475504AB383128BD9F4DC86D8ECA8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305492010/DDAEDA950BB51BFB69F900CF9FB588DAE4746F95/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "968524", "Name": "CardCustom", "Transform": { "posX": 13.0, "posY": 1.06553829, "posZ": 5.0, "rotX": -0.0009030649, "rotY": 180.0, "rotZ": 179.997589, "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": 552700, "SidewaysCard": false, "CustomDeck": { "5527": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305483336/DA75388605A047BE33638886170BFBCC69DB09DD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305483055/7D7F9D8127DF17EF9079D0A498EE7F0BC9390F57/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0a04f5", "Name": "CardCustom", "Transform": { "posX": 13.0, "posY": 1.05649543, "posZ": 5.0, "rotX": 0.0008674339, "rotY": 180.0, "rotZ": 180.024277, "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": 551400, "SidewaysCard": false, "CustomDeck": { "5514": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305455864/6A84A9FE51B1F148834502596C61459753FC8CE1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305455512/587DE59EE1DB5ADA7A53F700101B7C355EF6CF23/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "80d832", "Name": "CardCustom", "Transform": { "posX": 13.0, "posY": 1.046463, "posZ": 5.0, "rotX": 0.0012337988, "rotY": 180.0, "rotZ": 180.001083, "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": 553000, "SidewaysCard": false, "CustomDeck": { "5530": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305487961/08042DB4A15FDAD7B6661F3B70690ED566486BDE/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305487713/4545F6E6AC6C9F2278D912A66632104A0930247B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a52267", "Name": "CardCustom", "Transform": { "posX": 13.0, "posY": 1.01434124, "posZ": 5.0, "rotX": 2.08245851E-07, "rotY": 180.0, "rotZ": 180.115829, "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": 551700, "SidewaysCard": false, "CustomDeck": { "5517": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305461176/CA3261B3142A26D4FD4E609D464FB915C2986969/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305460807/BC8F827385E718C638DD80D66CEE757857C0B3D1/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "88ae85", "Name": "CardCustom", "Transform": { "posX": -16.6400871, "posY": 1.41512918, "posZ": -67.8205948, "rotX": 0.0208122954, "rotY": 270.000366, "rotZ": 0.01677555, "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": 550800, "SidewaysCard": false, "CustomDeck": { "5508": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305436737/D71C14F3E9567CE3AF9C928CB3B20F9E059222BD/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305439478/FBF77FFC48494194E6685404DC9D5149AC36DF1B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "c61dd3", "Name": "Deck", "Transform": { "posX": -16.6400871, "posY": 1.35648179, "posZ": -61.23099, "rotX": 0.0208102539, "rotY": 269.999847, "rotZ": 0.0167700481, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "Seeker Mini-cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 552400, 550300, 551500, 550500, 552300, 552800, 551300 ], "CustomDeck": { "5524": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305475346/402C7D8E9DDAE2D2C7F3F60F958DC9A8E5E79DF2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305475077/D8C040B4F48D5C6A0137A456F31250520F4BF5BC/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5503": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305429283/10DF1B159B4F29E75D065009480459780AF675B3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305428919/A218EE66465EC965991D0C7510DB96FCC4F14350/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5515": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305457495/E2E8B4C0E4AB749A3D4196AA90ADD0CBA3E0BB71/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305456916/6CF149BE313B4058A97D381273263E0DB51B4693/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5505": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305433851/8FBBBC0DDBECDC8EC7C3810EF7274B3CF744AD5E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305433569/4F97F47B326839A62939F3A82B587E88F393D240/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5523": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305474341/796BDFBAD2DDAD588CAF4FCC942FB4AD6188552A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305473902/E9E959DDA8EC9FADE86621715AC0CF359B961A6F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5528": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305484378/0ACCBF630F95BBB156D63F9B41BFF04534F370AB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305484073/588A358E949444A79876D1ADB319530D2092575F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5513": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305454702/A28BA7F0A8A29674255B90A82BA16EE22AC1AA86/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305453551/3F6620973799D311829252A132367DA69F92EBFF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "562930", "Name": "CardCustom", "Transform": { "posX": -1.0, "posY": 1.08702707, "posZ": 5.0, "rotX": 1.71411969E-07, "rotY": 180.0, "rotZ": 180.135132, "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": 552400, "SidewaysCard": false, "CustomDeck": { "5524": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305475346/402C7D8E9DDAE2D2C7F3F60F958DC9A8E5E79DF2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305475077/D8C040B4F48D5C6A0137A456F31250520F4BF5BC/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1167ad", "Name": "CardCustom", "Transform": { "posX": -1.0, "posY": 1.07515669, "posZ": 5.0, "rotX": 1.61829846E-07, "rotY": 180.0, "rotZ": 179.994629, "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": 550300, "SidewaysCard": false, "CustomDeck": { "5503": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305429283/10DF1B159B4F29E75D065009480459780AF675B3/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305428919/A218EE66465EC965991D0C7510DB96FCC4F14350/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b0008e", "Name": "CardCustom", "Transform": { "posX": -1.0, "posY": 1.066292, "posZ": 5.0, "rotX": -2.09761154E-07, "rotY": 180.0, "rotZ": 180.03653, "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": 551500, "SidewaysCard": false, "CustomDeck": { "5515": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305457495/E2E8B4C0E4AB749A3D4196AA90ADD0CBA3E0BB71/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305456916/6CF149BE313B4058A97D381273263E0DB51B4693/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "39e1dc", "Name": "CardCustom", "Transform": { "posX": -1.0, "posY": 1.05640686, "posZ": 5.0, "rotX": -4.59502473E-07, "rotY": 180.0, "rotZ": 180.021683, "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": 550500, "SidewaysCard": false, "CustomDeck": { "5505": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305433851/8FBBBC0DDBECDC8EC7C3810EF7274B3CF744AD5E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305433569/4F97F47B326839A62939F3A82B587E88F393D240/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9fea4b", "Name": "CardCustom", "Transform": { "posX": -1.0, "posY": 1.04781449, "posZ": 5.0, "rotX": -1.686857E-06, "rotY": 180.0, "rotZ": 180.082748, "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": 552300, "SidewaysCard": false, "CustomDeck": { "5523": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305474341/796BDFBAD2DDAD588CAF4FCC942FB4AD6188552A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305473902/E9E959DDA8EC9FADE86621715AC0CF359B961A6F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "811cff", "Name": "CardCustom", "Transform": { "posX": -1.0, "posY": 1.01239693, "posZ": 5.0, "rotX": -9.26347E-08, "rotY": 180.0, "rotZ": 179.993484, "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": 552800, "SidewaysCard": false, "CustomDeck": { "5528": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305484378/0ACCBF630F95BBB156D63F9B41BFF04534F370AB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305484073/588A358E949444A79876D1ADB319530D2092575F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "074e6f", "Name": "CardCustom", "Transform": { "posX": -1.00000179, "posY": 0.9736048, "posZ": 5.0, "rotX": -1.86268707E-07, "rotY": 180.0, "rotZ": 180.0, "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": 551300, "SidewaysCard": false, "CustomDeck": { "5513": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305454702/A28BA7F0A8A29674255B90A82BA16EE22AC1AA86/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305453551/3F6620973799D311829252A132367DA69F92EBFF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "6be340", "Name": "Deck", "Transform": { "posX": -19.3000755, "posY": 1.35551512, "posZ": -61.2332573, "rotX": 0.02081012, "rotY": 269.999146, "rotZ": 0.0167703833, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "Seekers", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 548800, 548600, 547800, 549800, 548700, 549100, 546900 ], "CustomDeck": { "5488": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033546165/08954CEB11E6EFCBD6AE971014467DBA17C52486/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033545845/472B7DA919D073F55B0AC2F27E659A7760A2E7CA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5486": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033542200/67024A701C663836CC5D492D7499F719C2166584/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033541835/614E7FD525A18B1BBEC1D8FDC585DCD307772D35/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5478": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033532957/67C3E1742B1571A06E0FA995D82DD57BCB937B39/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033532598/CE6BD0F367E61C1C7F9C313CDE099DD2B19CB671/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5498": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033559215/BC41CC4FB8E1F744D48A5D772C183F56D8287899/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033558860/5C0CBBFDD14D4A6159C2C8D4343030B8BC40D03C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5487": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033545133/0F2D875D17BC5CAB71FD6E5D591026599868CCF9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033543384/ECBEBFE842B19FE1FCC302BD0F0251685BBA02BF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5491": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033550569/42A83D4FC4A4E6E5521CDC3340B7929F3A6213C1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033550042/74EC08EAF0743281F9AB29322D0110899D803E6B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5469": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033525937/528A804DF8C59409F330E7B76C3BAD970E1AAC43/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033525695/88EF171D98A41DA177260C106DA0C5CDA9B0B19D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b67b10", "Name": "CardCustom", "Transform": { "posX": 3.0, "posY": 1.09795427, "posZ": 5.0, "rotX": -9.398697E-05, "rotY": 180.0, "rotZ": 180.383774, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 548800, "SidewaysCard": false, "CustomDeck": { "5488": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033546165/08954CEB11E6EFCBD6AE971014467DBA17C52486/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033545845/472B7DA919D073F55B0AC2F27E659A7760A2E7CA/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f07289", "Name": "CardCustom", "Transform": { "posX": 3.0, "posY": 1.07886326, "posZ": 5.0, "rotX": -1.86526431E-05, "rotY": 180.0, "rotZ": 180.068848, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 548600, "SidewaysCard": false, "CustomDeck": { "5486": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033542200/67024A701C663836CC5D492D7499F719C2166584/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033541835/614E7FD525A18B1BBEC1D8FDC585DCD307772D35/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6811ba", "Name": "CardCustom", "Transform": { "posX": 3.0, "posY": 1.06570983, "posZ": 5.0, "rotX": 1.83939528E-06, "rotY": 180.0, "rotZ": 179.992615, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 547800, "SidewaysCard": false, "CustomDeck": { "5478": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033532957/67C3E1742B1571A06E0FA995D82DD57BCB937B39/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033532598/CE6BD0F367E61C1C7F9C313CDE099DD2B19CB671/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b299cb", "Name": "CardCustom", "Transform": { "posX": 3.0, "posY": 1.0583905, "posZ": 5.0, "rotX": -7.930237E-05, "rotY": 180.0, "rotZ": 180.043015, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 549800, "SidewaysCard": false, "CustomDeck": { "5498": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033559215/BC41CC4FB8E1F744D48A5D772C183F56D8287899/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033558860/5C0CBBFDD14D4A6159C2C8D4343030B8BC40D03C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "142f27", "Name": "CardCustom", "Transform": { "posX": 3.0, "posY": 1.04642332, "posZ": 5.0, "rotX": -5.833788E-07, "rotY": 180.0, "rotZ": 179.997849, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 548700, "SidewaysCard": false, "CustomDeck": { "5487": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033545133/0F2D875D17BC5CAB71FD6E5D591026599868CCF9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033543384/ECBEBFE842B19FE1FCC302BD0F0251685BBA02BF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bb8190", "Name": "CardCustom", "Transform": { "posX": 3.0, "posY": 1.01421165, "posZ": 5.0, "rotX": -7.801021E-06, "rotY": 180.0, "rotZ": 180.028519, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 549100, "SidewaysCard": false, "CustomDeck": { "5491": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033550569/42A83D4FC4A4E6E5521CDC3340B7929F3A6213C1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033550042/74EC08EAF0743281F9AB29322D0110899D803E6B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f22202", "Name": "CardCustom", "Transform": { "posX": 3.0, "posY": 0.9736048, "posZ": 5.0, "rotX": -1.07957291E-07, "rotY": 180.0, "rotZ": 180.0, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 546900, "SidewaysCard": false, "CustomDeck": { "5469": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033525937/528A804DF8C59409F330E7B76C3BAD970E1AAC43/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033525695/88EF171D98A41DA177260C106DA0C5CDA9B0B19D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "169f5f", "Name": "Deck", "Transform": { "posX": -19.30002, "posY": 1.35298359, "posZ": -53.4358368, "rotX": 0.020809358, "rotY": 270.001556, "rotZ": 0.0167713724, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "Guardians", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 549600, 546400, 547900, 548300, 550100, 549000 ], "CustomDeck": { "5496": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033556759/8D310B5943805377EBAEC5C68A4E9D1740976A15/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033556283/DAE78352EC29618A6D126945F6FE741FE25963DB/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5464": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033513250/D354EF6A64C794BDFE1AD99EB58A0A30211687EB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033512785/5BE2998EEA8BEAB852C4BB5F3725C282DD292EC2/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5479": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033533878/5023A575EE055B90C494B330C7A769539862DAA0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033533593/F658E515B83A1BC5A77CDC1CA9761901743FB94F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5483": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033538005/C9653F497DD8C04B784E37A264EF8B1F65F9E1C1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033537720/4522304AD8ED9ED84F543C017AA551FC012D37EF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5501": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033563094/BCBEC185D4C1AF56C95A5DD900A08CC0ED8A382A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033562814/359058C91C0D087239E3DA87593985C365B642F5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5490": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033548708/90028C3C978C3CE8E51B5596A45A73EC66861E14/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033548332/39E1A66A57916F06BEB0481796146C4F017BF4BD/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "76a43a", "Name": "CardCustom", "Transform": { "posX": 3.0, "posY": 1.07989728, "posZ": 5.0, "rotX": -0.000101676887, "rotY": 180.0, "rotZ": 180.4485, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 549600, "SidewaysCard": false, "CustomDeck": { "5496": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033556759/8D310B5943805377EBAEC5C68A4E9D1740976A15/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033556283/DAE78352EC29618A6D126945F6FE741FE25963DB/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f879ed", "Name": "CardCustom", "Transform": { "posX": 3.0, "posY": 1.06310284, "posZ": 5.0, "rotX": -4.25317849E-05, "rotY": 180.0, "rotZ": 180.156281, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 546400, "SidewaysCard": false, "CustomDeck": { "5464": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033513250/D354EF6A64C794BDFE1AD99EB58A0A30211687EB/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033512785/5BE2998EEA8BEAB852C4BB5F3725C282DD292EC2/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "35fc80", "Name": "CardCustom", "Transform": { "posX": -9.0, "posY": 1.04651928, "posZ": 7.0, "rotX": 0.001892891, "rotY": 180.0, "rotZ": 0.00178373186, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 547900, "SidewaysCard": false, "CustomDeck": { "5479": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033533878/5023A575EE055B90C494B330C7A769539862DAA0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033533593/F658E515B83A1BC5A77CDC1CA9761901743FB94F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b9c0c9", "Name": "CardCustom", "Transform": { "posX": -13.0, "posY": 1.04644251, "posZ": 9.0, "rotX": -8.438563E-07, "rotY": 180.0, "rotZ": 179.993179, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 548300, "SidewaysCard": false, "CustomDeck": { "5483": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033538005/C9653F497DD8C04B784E37A264EF8B1F65F9E1C1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033537720/4522304AD8ED9ED84F543C017AA551FC012D37EF/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "70a954", "Name": "CardCustom", "Transform": { "posX": -13.0, "posY": 1.02036655, "posZ": 9.0, "rotX": -0.000369062327, "rotY": 180.0, "rotZ": 180.178452, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 550100, "SidewaysCard": false, "CustomDeck": { "5501": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033563094/BCBEC185D4C1AF56C95A5DD900A08CC0ED8A382A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033562814/359058C91C0D087239E3DA87593985C365B642F5/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "80ecc2", "Name": "CardCustom", "Transform": { "posX": -13.000246, "posY": 0.9736048, "posZ": 8.999985, "rotX": 1.65381167E-07, "rotY": 180.000137, "rotZ": 180.0, "scaleX": 0.7825587, "scaleY": 1.0, "scaleZ": 0.7825587 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 549000, "SidewaysCard": false, "CustomDeck": { "5490": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033548708/90028C3C978C3CE8E51B5596A45A73EC66861E14/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033548332/39E1A66A57916F06BEB0481796146C4F017BF4BD/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "7d5120", "Name": "CardCustom", "Transform": { "posX": -22.613903, "posY": 1.3155694, "posZ": -53.43813, "rotX": 0.0208082963, "rotY": 270.000031, "rotZ": 180.016769, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CardID": 548400, "SidewaysCard": false, "CustomDeck": { "5484": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033539705/5FD00F73DFD036F8FBDFBD4C9AFAF59D94CBB584/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1500215618033539980/41A8939939EE2CF814B479BB2764CE42CDB06D1D/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "981000", "Name": "Deck", "Transform": { "posX": -16.64007, "posY": 1.3539629, "posZ": -53.3904228, "rotX": 0.020809995, "rotY": 270.000031, "rotZ": 0.01677033, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "Guardian Mini-cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 553300, 551000, 551800, 553100, 553700, 553600 ], "CustomDeck": { "5533": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305491357/1EC93A8A1B19F465B7D46307FD68E9730173BF6D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305491135/2BAE335081D65C9B5A5F8C323F63515B97A2C478/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5510": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305448691/7AF86C28BE8D5A2950F552CAD8F89D49FDF6C7F8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305448316/3CFA02237285CCBDB8D91F48D87C14D4C12E7C0B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5518": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305462225/EC296A85AC18FD74E9DC5D50C9AEEDB13FE31C87/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305461845/4EFA3A2EE126AB0263E45C04A573B7AB42917963/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5531": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305489063/835A6E353A69E1C4B351E285136B520CEA26271E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305488690/1BA1A2498ABDBED462EDA9A0A0292A3E4ECE120C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5537": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305498145/48B606B634B4EBCA76FB51EBFACBBE7CD8F81C26/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305497532/32A92707C30D4F28010747F8CD997F3D45AF5C52/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "5536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305494268/1369E9DBE2E2516A9C0418FC00E1D8ED742BBBC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305493908/E5A9E268181A62B6CDA5FB0A3BF312C3F110CF83/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b1432c", "Name": "CardCustom", "Transform": { "posX": -1.0, "posY": 1.06559575, "posZ": 5.0, "rotX": 1.5729357E-07, "rotY": 180.0, "rotZ": 179.999741, "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": false, "Hands": false, "CardID": 553300, "SidewaysCard": false, "CustomDeck": { "5533": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305491357/1EC93A8A1B19F465B7D46307FD68E9730173BF6D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305491135/2BAE335081D65C9B5A5F8C323F63515B97A2C478/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "65124a", "Name": "CardCustom", "Transform": { "posX": -1.0, "posY": 1.05630231, "posZ": 5.0, "rotX": 2.46516E-08, "rotY": 180.0, "rotZ": 180.015915, "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": 551000, "SidewaysCard": false, "CustomDeck": { "5510": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305448691/7AF86C28BE8D5A2950F552CAD8F89D49FDF6C7F8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305448316/3CFA02237285CCBDB8D91F48D87C14D4C12E7C0B/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d54515", "Name": "CardCustom", "Transform": { "posX": -15.0, "posY": 1.05681837, "posZ": 5.0, "rotX": -1.12027038E-07, "rotY": 180.0, "rotZ": 180.045837, "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": 551800, "SidewaysCard": false, "CustomDeck": { "5518": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305462225/EC296A85AC18FD74E9DC5D50C9AEEDB13FE31C87/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305461845/4EFA3A2EE126AB0263E45C04A573B7AB42917963/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4026fa", "Name": "CardCustom", "Transform": { "posX": -15.0, "posY": 1.04824924, "posZ": 5.0, "rotX": -1.55080158E-06, "rotY": 180.0, "rotZ": 180.115829, "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": false, "Hands": false, "CardID": 553100, "SidewaysCard": false, "CustomDeck": { "5531": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305489063/835A6E353A69E1C4B351E285136B520CEA26271E/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305488690/1BA1A2498ABDBED462EDA9A0A0292A3E4ECE120C/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0930da", "Name": "CardCustom", "Transform": { "posX": -15.0, "posY": 1.01238954, "posZ": 5.0, "rotX": 5.902765E-06, "rotY": 180.0, "rotZ": 179.993713, "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": false, "Hands": false, "CardID": 553700, "SidewaysCard": false, "CustomDeck": { "5537": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305498145/48B606B634B4EBCA76FB51EBFACBBE7CD8F81C26/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305497532/32A92707C30D4F28010747F8CD997F3D45AF5C52/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "74ae35", "Name": "CardCustom", "Transform": { "posX": -13.0, "posY": 1.07512689, "posZ": 5.0, "rotX": 7.551448E-08, "rotY": 180.0, "rotZ": -6.77406149E-07, "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": false, "Hands": false, "CardID": 553600, "SidewaysCard": false, "CustomDeck": { "5536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305494268/1369E9DBE2E2516A9C0418FC00E1D8ED742BBBC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1503594014305493908/E5A9E268181A62B6CDA5FB0A3BF312C3F110CF83/", "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 } } ] }