{ "GUID": "4d5fa0", "Name": "Custom_Model_Bag", "Transform": { "posX": 12.2499924, "posY": 1.46560526, "posZ": 3.98634839, "rotX": 359.920135, "rotY": 269.9999, "rotZ": 0.0168742239, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "Against the Wendigo", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142901599/7EE6EF24852C443DF5E92CF9498881E321CEE75A/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "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\":{\"06f882\":{\"lock\":true,\"pos\":{\"x\":-3.76900005340576,\"y\":4.13520002365112,\"z\":5.67080020904541},\"rot\":{\"x\":0,\"y\":90,\"z\":0}},\"0c01a1\":{\"lock\":false,\"pos\":{\"x\":1.2422,\"y\":1.3947,\"z\":0.1206},\"rot\":{\"x\":359.9832,\"y\":0.0007,\"z\":359.9197}},\"0e52c8\":{\"lock\":false,\"pos\":{\"x\":-36.7731170654297,\"y\":1.64632892608643,\"z\":-0.0299968924373388},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168402567505836}},\"0f6d69\":{\"lock\":false,\"pos\":{\"x\":-20.4015007019043,\"y\":1.60985171794891,\"z\":-0.177200019359589},\"rot\":{\"x\":0.0798944979906082,\"y\":90.0004348754883,\"z\":359.983123779297}},\"1ac3ac\":{\"lock\":false,\"pos\":{\"x\":-3.95601749420166,\"y\":1.59753954410553,\"z\":-10.441198348999},\"rot\":{\"x\":359.919738769531,\"y\":270.031280517578,\"z\":0.0167942680418491}},\"1ee2a5\":{\"lock\":false,\"pos\":{\"x\":-33.3772010803223,\"y\":1.62799525260925,\"z\":-0.00780024146661162},\"rot\":{\"x\":0.0798945650458336,\"y\":90.0005187988281,\"z\":359.983123779297}},\"201524\":{\"lock\":false,\"pos\":{\"x\":-17.1200008392334,\"y\":1.60646212100983,\"z\":3.86000037193298},\"rot\":{\"x\":0.0167902931571007,\"y\":180.035140991211,\"z\":0.079946868121624}},\"309b74\":{\"lock\":false,\"pos\":{\"x\":-12.432225227356,\"y\":1.63149964809418,\"z\":7.31530523300171},\"rot\":{\"x\":359.920104980469,\"y\":270.000457763672,\"z\":0.0168410111218691}},\"45ae28\":{\"lock\":false,\"pos\":{\"x\":-9.39212226867676,\"y\":1.50021779537201,\"z\":-27.1340980529785},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":180.016860961914}},\"5f661f\":{\"lock\":false,\"pos\":{\"x\":-2.68850708007813,\"y\":1.61911654472351,\"z\":-5.048499584198},\"rot\":{\"x\":359.919738769531,\"y\":270.005615234375,\"z\":0.0168295986950397}},\"60ad05\":{\"lock\":false,\"pos\":{\"x\":-36.7731018066406,\"y\":1.63160705566406,\"z\":-3.83000040054321},\"rot\":{\"x\":0.0167906507849693,\"y\":180.034790039063,\"z\":0.0799511894583702}},\"6791fd\":{\"lock\":false,\"pos\":{\"x\":1.69690048694611,\"y\":1.55831575393677,\"z\":14.2784023284912},\"rot\":{\"x\":359.955139160156,\"y\":224.998107910156,\"z\":0.0686739981174469}},\"686672\":{\"lock\":false,\"pos\":{\"x\":-36.7732162475586,\"y\":1.64856255054474,\"z\":7.57000303268433},\"rot\":{\"x\":359.920104980469,\"y\":269.999664306641,\"z\":0.0168415307998657}},\"6f2827\":{\"lock\":false,\"pos\":{\"x\":-3.92771148681641,\"y\":1.74919271469116,\"z\":5.75710391998291},\"rot\":{\"x\":359.919738769531,\"y\":269.993286132813,\"z\":180.016830444336}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7731018066406,\"y\":1.63386714458466,\"z\":3.86000084877014},\"rot\":{\"x\":0.0167915932834148,\"y\":180.034286499023,\"z\":0.0799638628959656}},\"82e1ed\":{\"lock\":false,\"pos\":{\"x\":-4.00120067596436,\"y\":1.58277893066406,\"z\":-14.5900020599365},\"rot\":{\"x\":359.919738769531,\"y\":269.992614746094,\"z\":0.016848323866725}},\"86cbee\":{\"lock\":false,\"pos\":{\"x\":-17.1199989318848,\"y\":1.60420215129852,\"z\":-3.8299994468689},\"rot\":{\"x\":0.0167905073612928,\"y\":180.034927368164,\"z\":0.0799460336565971}},\"88a1cf\":{\"lock\":false,\"pos\":{\"x\":-36.7732162475586,\"y\":1.6440749168396,\"z\":-7.69999694824219},\"rot\":{\"x\":359.920104980469,\"y\":269.999694824219,\"z\":0.0168403629213572}},\"9caa1f\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62473499774933,\"z\":3.86000084877014},\"rot\":{\"x\":0.0167905203998089,\"y\":180.034866333008,\"z\":0.0799559205770493}},\"9dadf5\":{\"lock\":false,\"pos\":{\"x\":-1.4655841588974,\"y\":1.47562277317047,\"z\":-26.9304237365723},\"rot\":{\"x\":359.920135498047,\"y\":270.000732421875,\"z\":0.016870966181159}},\"9e701d\":{\"lock\":false,\"pos\":{\"x\":-2.72470688819885,\"y\":1.62076044082642,\"z\":0.373301297426224},\"rot\":{\"x\":359.919738769531,\"y\":269.982604980469,\"z\":0.0168617274612188}},\"a69955\":{\"lock\":false,\"pos\":{\"x\":-30.2242069244385,\"y\":1.65896475315094,\"z\":-0.0299987606704235},\"rot\":{\"x\":359.920104980469,\"y\":270.00048828125,\"z\":0.0168402157723904}},\"b3ec68\":{\"lock\":false,\"pos\":{\"x\":-12.7351093292236,\"y\":1.64195537567139,\"z\":-7.6860990524292},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":0.0168423783034086}},\"b6a235\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.61334466934204,\"z\":-3.82999992370605},\"rot\":{\"x\":0.0167906042188406,\"y\":180.034820556641,\"z\":0.0799501836299896}},\"d807d4\":{\"lock\":false,\"pos\":{\"x\":-26.8813991546631,\"y\":1.61892998218536,\"z\":-0.0326002426445484},\"rot\":{\"x\":0.079894594848156,\"y\":90.0005187988281,\"z\":359.983123779297}},\"dda3d5\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62247502803802,\"z\":-3.82999992370605},\"rot\":{\"x\":0.0167906302958727,\"y\":180.034820556641,\"z\":0.0799499675631523}},\"e47eca\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.61560475826263,\"z\":3.86000061035156},\"rot\":{\"x\":0.0167904961854219,\"y\":180.034881591797,\"z\":0.0799509137868881}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "9dadf5", "Name": "Custom_PDF", "Transform": { "posX": -1.46558416, "posY": 1.47562277, "posZ": -26.9304237, "rotX": 359.920135, "rotY": 270.000732, "rotZ": 0.0168709662, "scaleX": 2.17822933, "scaleY": 1.0, "scaleZ": 2.17822933 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomPDF": { "PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1762565653119488499/D64E5291BD132702247FB120BC5DD981EE6CFA20/", "PDFPassword": "", "PDFPage": 0, "PDFPageOffset": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "06f882", "Name": "ScriptingTrigger", "Transform": { "posX": -3.769, "posY": 4.1352, "posZ": 5.6708, "rotX": 0.0, "rotY": 90.0, "rotZ": 0.0, "scaleX": 3.98790359, "scaleY": 5.1, "scaleZ": 5.42034 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0, "a": 0.509803951 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": true, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0e52c8", "Name": "Card", "Transform": { "posX": -36.7731171, "posY": 1.64632893, "posZ": -0.0299968924, "rotX": 359.9201, "rotY": 269.999756, "rotZ": 0.0168402568, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Jetty", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265502, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0f6d69", "Name": "Custom_Tile", "Transform": { "posX": -20.4015, "posY": 1.60985172, "posZ": -0.177200019, "rotX": 0.0798945, "rotY": 90.0004349, "rotZ": 359.983124, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "1ac3ac", "Name": "Card", "Transform": { "posX": -3.95601749, "posY": 1.59753954, "posZ": -10.4411983, "rotX": 359.919739, "rotY": 270.031281, "rotZ": 0.016794268, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scenario", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265000, "SidewaysCard": false, "CustomDeck": { "2650": { "FaceURL": "https://i.imgur.com/os2yoP9.jpg", "BackURL": "https://i.imgur.com/fFBNkRj.jpg", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1ee2a5", "Name": "Custom_Tile", "Transform": { "posX": -33.3772, "posY": 1.62799525, "posZ": -0.00780024147, "rotX": 0.079894565, "rotY": 90.00052, "rotZ": 359.983124, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "201524", "Name": "Custom_Tile", "Transform": { "posX": -17.12, "posY": 1.60646212, "posZ": 3.86000037, "rotX": 0.0167902932, "rotY": 180.035141, "rotZ": 0.07994687, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "309b74", "Name": "Deck", "Transform": { "posX": -12.4322252, "posY": 1.63149965, "posZ": 7.315305, "rotX": 359.9201, "rotY": 270.000458, "rotZ": 0.0168410111, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mountain Range", "Description": "randomly remove one from the game, and add the other to the random shuffle deck", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "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": [ 265500, 265501 ], "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "17d996", "Name": "Card", "Transform": { "posX": -9.419911, "posY": 1.560614, "posZ": -20.866518, "rotX": 0.0281638689, "rotY": 179.996033, "rotZ": 0.0611889772, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mountain Range", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265500, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "75dc93", "Name": "Card", "Transform": { "posX": -9.547756, "posY": 1.73871994, "posZ": -21.2084332, "rotX": 0.0290053021, "rotY": 180.016754, "rotZ": 357.942261, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mountain Range", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265501, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "45ae28", "Name": "Card", "Transform": { "posX": -9.392122, "posY": 1.5002178, "posZ": -27.1340981, "rotX": 359.920135, "rotY": 270.0, "rotZ": 180.016861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Credits", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 264800, "SidewaysCard": false, "CustomDeck": { "2648": { "FaceURL": "https://i.imgur.com/8EQmSan.jpg", "BackURL": "https://i.imgur.com/YK8jZEB.jpg", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5f661f", "Name": "Deck", "Transform": { "posX": -2.688507, "posY": 1.61911654, "posZ": -5.04849958, "rotX": 359.919739, "rotY": 270.0056, "rotZ": 0.0168295987, "scaleX": 0.73, "scaleY": 1.0, "scaleZ": 0.73 }, "Nickname": "Act Deck", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "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": [ 265105, 265103, 265101 ], "CustomDeck": { "2651": { "FaceURL": "https://i.imgur.com/TPbHbHV.jpg", "BackURL": "https://i.imgur.com/XrbD4Tw.jpg", "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "96da49", "Name": "Card", "Transform": { "posX": 14.584609, "posY": 1.52660918, "posZ": -20.3363476, "rotX": 0.002456629, "rotY": 179.999863, "rotZ": 0.07727847, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265105, "SidewaysCard": false, "CustomDeck": { "2651": { "FaceURL": "https://i.imgur.com/TPbHbHV.jpg", "BackURL": "https://i.imgur.com/XrbD4Tw.jpg", "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9d71af", "Name": "Card", "Transform": { "posX": 14.7041407, "posY": 1.52534664, "posZ": -24.6753616, "rotX": 0.0115756327, "rotY": 180.000229, "rotZ": 0.07886451, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265103, "SidewaysCard": false, "CustomDeck": { "2651": { "FaceURL": "https://i.imgur.com/TPbHbHV.jpg", "BackURL": "https://i.imgur.com/XrbD4Tw.jpg", "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b2eb57", "Name": "Card", "Transform": { "posX": 14.8025436, "posY": 1.66585183, "posZ": -24.8973255, "rotX": 0.0197454877, "rotY": 180.000916, "rotZ": 0.0768766254, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265101, "SidewaysCard": false, "CustomDeck": { "2651": { "FaceURL": "https://i.imgur.com/TPbHbHV.jpg", "BackURL": "https://i.imgur.com/XrbD4Tw.jpg", "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "60ad05", "Name": "Custom_Tile", "Transform": { "posX": -36.7731, "posY": 1.631607, "posZ": -3.8300004, "rotX": 0.01679065, "rotY": 180.03479, "rotZ": 0.07995119, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "6791fd", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69690049, "posY": 1.55831575, "posZ": 14.2784023, "rotX": 359.955139, "rotY": 224.998108, "rotZ": 0.068674, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "71121c", "Name": "Deck", "Transform": { "posX": 20.5172482, "posY": 3.57571459, "posZ": 8.815525, "rotX": 359.935455, "rotY": 269.997253, "rotZ": 0.0135970972, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Old Injury", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 265401, 265402, 265403, 265400 ], "CustomDeck": { "2654": { "FaceURL": "https://i.imgur.com/lx2gi83.jpg", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b2a00a", "Name": "Card", "Transform": { "posX": -13.8370275, "posY": 1.64114773, "posZ": -25.9498634, "rotX": 0.0175786521, "rotY": 180.001419, "rotZ": 356.070068, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Old Injury", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 265401, "SidewaysCard": false, "CustomDeck": { "2654": { "FaceURL": "https://i.imgur.com/lx2gi83.jpg", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e4ca7c", "Name": "Card", "Transform": { "posX": -11.2516718, "posY": 1.64092624, "posZ": -25.3027763, "rotX": 357.094849, "rotY": 179.94873, "rotZ": 0.08009553, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Old Injury", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 265402, "SidewaysCard": false, "CustomDeck": { "2654": { "FaceURL": "https://i.imgur.com/lx2gi83.jpg", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b7e985", "Name": "Card", "Transform": { "posX": -11.7445717, "posY": 1.561306, "posZ": -28.1742363, "rotX": 0.0172670223, "rotY": 179.994751, "rotZ": 0.07970666, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Old Injury", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 265403, "SidewaysCard": false, "CustomDeck": { "2654": { "FaceURL": "https://i.imgur.com/lx2gi83.jpg", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "522f71", "Name": "Card", "Transform": { "posX": -15.3229742, "posY": 1.66658056, "posZ": -28.70441, "rotX": 0.9497631, "rotY": 179.944138, "rotZ": 356.140137, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Old Injury", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 265400, "SidewaysCard": false, "CustomDeck": { "2654": { "FaceURL": "https://i.imgur.com/lx2gi83.jpg", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "35a314", "Name": "Deck", "Transform": { "posX": 20.2040119, "posY": 3.57593465, "posZ": 7.92056561, "rotX": 359.9198, "rotY": 270.015045, "rotZ": 0.0172714815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Assets", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 265406, 265407, 265405, 265404 ], "CustomDeck": { "2654": { "FaceURL": "https://i.imgur.com/lx2gi83.jpg", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "49e0bf", "Name": "Card", "Transform": { "posX": -13.9369688, "posY": 1.565338, "posZ": -24.8596783, "rotX": 0.01335979, "rotY": 179.985489, "rotZ": 0.07877733, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Indian Guide", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 265406, "SidewaysCard": false, "CustomDeck": { "2654": { "FaceURL": "https://i.imgur.com/lx2gi83.jpg", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fd15eb", "Name": "Card", "Transform": { "posX": -13.8153105, "posY": 1.7057544, "posZ": -25.0008888, "rotX": -0.0019204031, "rotY": 179.998215, "rotZ": 0.08380626, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ithaqua's Knowledge", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 265407, "SidewaysCard": false, "CustomDeck": { "2654": { "FaceURL": "https://i.imgur.com/lx2gi83.jpg", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "44b7e9", "Name": "Card", "Transform": { "posX": -13.9091377, "posY": 1.72328758, "posZ": -24.96826, "rotX": 0.01563552, "rotY": 179.988724, "rotZ": 0.08154421, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Expedition Notebook", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 265405, "SidewaysCard": false, "CustomDeck": { "2654": { "FaceURL": "https://i.imgur.com/lx2gi83.jpg", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7fb42e", "Name": "Card", "Transform": { "posX": -13.7459326, "posY": 1.70941365, "posZ": -24.8511562, "rotX": 0.00330711366, "rotY": 179.9752, "rotZ": 0.09426054, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tomahawk", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 265404, "SidewaysCard": false, "CustomDeck": { "2654": { "FaceURL": "https://i.imgur.com/lx2gi83.jpg", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "0b5e2d", "Name": "Deck", "Transform": { "posX": 19.7323666, "posY": 3.58544612, "posZ": 8.174288, "rotX": 359.915344, "rotY": 269.992065, "rotZ": 180.019516, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Story 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": [ 265514, 265515, 265513 ], "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "cc2a0c", "Name": "Card", "Transform": { "posX": -10.4712791, "posY": 1.719265, "posZ": -31.4951458, "rotX": 0.0161356665, "rotY": 179.991272, "rotZ": 180.061951, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265514, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ecd352", "Name": "Card", "Transform": { "posX": -10.6863613, "posY": 1.70184827, "posZ": -31.2720089, "rotX": 0.015802253, "rotY": 180.000244, "rotZ": 180.057526, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265515, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3c4632", "Name": "Card", "Transform": { "posX": -10.4357271, "posY": 1.56125617, "posZ": -31.3380089, "rotX": 0.0114343092, "rotY": 179.9995, "rotZ": 180.081924, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265513, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "c0187f", "Name": "Deck", "Transform": { "posX": 19.97455, "posY": 3.59142327, "posZ": 8.001096, "rotX": 359.919678, "rotY": 269.9899, "rotZ": 180.017334, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bernard's Fate", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "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": [ 265517, 265516 ], "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "3ee13d", "Name": "Card", "Transform": { "posX": -16.5645542, "posY": 1.71133482, "posZ": -27.6223774, "rotX": 0.0101670921, "rotY": 179.985886, "rotZ": 180.097916, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265517, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "114be3", "Name": "Card", "Transform": { "posX": -16.6185627, "posY": 1.57116115, "posZ": -27.1710644, "rotX": 0.007151388, "rotY": 180.010849, "rotZ": 180.084625, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265516, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "fe9b2c", "Name": "Deck", "Transform": { "posX": 20.22722, "posY": 3.59134126, "posZ": 8.82879448, "rotX": 359.9196, "rotY": 269.9865, "rotZ": 180.016983, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sylvia's Fate", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "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": [ 265521, 265520 ], "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "0e52c8", "Name": "Card", "Transform": { "posX": -16.54303, "posY": 1.71071184, "posZ": -30.543541, "rotX": 0.00177708233, "rotY": 180.01889, "rotZ": 180.089722, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265521, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d93ccf", "Name": "Card", "Transform": { "posX": -16.8544235, "posY": 1.57053912, "posZ": -30.5166187, "rotX": 0.0144525208, "rotY": 180.010376, "rotZ": 180.077209, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265520, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "bbb654", "Name": "Deck", "Transform": { "posX": 20.486517, "posY": 3.5911808, "posZ": 9.424225, "rotX": 359.91983, "rotY": 269.996826, "rotZ": 180.017212, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Norman's Fate", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "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": [ 265519, 265518 ], "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "00c966", "Name": "Card", "Transform": { "posX": -19.8726521, "posY": 1.71607971, "posZ": -28.0085278, "rotX": 0.006583329, "rotY": 180.003586, "rotZ": 180.0955, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265519, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ec7d0b", "Name": "Card", "Transform": { "posX": -20.1648827, "posY": 1.57593155, "posZ": -27.7984371, "rotX": 0.0145023745, "rotY": 180.0043, "rotZ": 180.081345, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265518, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "0917d6", "Name": "Deck", "Transform": { "posX": 20.1567879, "posY": 3.57719874, "posZ": 9.30741, "rotX": 359.919525, "rotY": 270.0078, "rotZ": 0.0170342438, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Wendigo's Myth", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 265600, 265601, 265602, 265603, 265633 ], "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -13.1723452, "posY": 1.56558657, "posZ": -20.3425, "rotX": 0.0161952823, "rotY": 180.00116, "rotZ": 0.0794915, "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": 265600, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8204ea", "Name": "Card", "Transform": { "posX": -13.2835617, "posY": 1.70646882, "posZ": -20.2346039, "rotX": 0.00453912746, "rotY": 180.001022, "rotZ": 0.0655258, "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": 265601, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -13.07146, "posY": 1.72360051, "posZ": -20.3863564, "rotX": 0.0135545582, "rotY": 180.000931, "rotZ": 0.0703278854, "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": 265602, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -12.9354057, "posY": 1.70965385, "posZ": -20.31162, "rotX": 0.0148929423, "rotY": 180.0013, "rotZ": 0.0739703253, "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": 265603, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "87b4c8", "Name": "Card", "Transform": { "posX": -13.0331793, "posY": 1.70771718, "posZ": -20.3505573, "rotX": 0.0145059293, "rotY": 180.0017, "rotZ": 0.08068475, "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": 265633, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "686672", "Name": "Card", "Transform": { "posX": -36.7732162, "posY": 1.64856255, "posZ": 7.570003, "rotX": 359.9201, "rotY": 269.999664, "rotZ": 0.01684153, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Indian Territory", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265512, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6f2827", "Name": "Deck", "Transform": { "posX": -3.92771149, "posY": 1.74919271, "posZ": 5.757104, "rotX": 359.919739, "rotY": 269.9933, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Encounter Deck", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 265631, 265615, 265629, 265630, 265628, 265604, 265616, 265626, 265617, 265619, 265606, 265627, 265621, 265610, 265611, 265624, 265622, 265625, 265620, 265612, 265609, 265608, 265632, 265623, 265618, 265607, 265614, 265605, 265613 ], "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "536c2f", "Name": "Card", "Transform": { "posX": -10.6081142, "posY": 1.85065544, "posZ": -17.0283947, "rotX": 0.0118074473, "rotY": 180.00148, "rotZ": 0.07353143, "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": 265631, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -11.7224331, "posY": 1.70691943, "posZ": -16.9837666, "rotX": 0.0162555184, "rotY": 180.123138, "rotZ": -0.00439084228, "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": 265615, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c256e0", "Name": "Card", "Transform": { "posX": -10.3827982, "posY": 1.83104146, "posZ": -17.2992668, "rotX": 0.0278747883, "rotY": 180.00116, "rotZ": 0.0958472937, "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": 265629, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5e3d7c", "Name": "Card", "Transform": { "posX": -10.4927158, "posY": 1.84096575, "posZ": -17.1267738, "rotX": 0.0171481054, "rotY": 180.009827, "rotZ": 0.0729737, "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": 265630, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "776b84", "Name": "Card", "Transform": { "posX": -10.9314346, "posY": 1.82222223, "posZ": -16.98193, "rotX": 0.0147738308, "rotY": 180.001434, "rotZ": 0.07261416, "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": 265628, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -11.2020636, "posY": 1.56397009, "posZ": -17.0374088, "rotX": 0.0175395552, "rotY": 180.005829, "rotZ": 0.07010526, "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": 265604, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -11.1990223, "posY": 1.716409, "posZ": -16.9014587, "rotX": 0.009260171, "rotY": 180.063889, "rotZ": 0.0137145668, "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": 265616, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "da637f", "Name": "Card", "Transform": { "posX": -11.0799351, "posY": 1.8031435, "posZ": -17.0155048, "rotX": 0.014191092, "rotY": 180.000534, "rotZ": 0.0653160438, "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": 265626, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -11.1391287, "posY": 1.72588658, "posZ": -16.940588, "rotX": 0.0115438811, "rotY": 179.998856, "rotZ": 0.059903346, "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": 265617, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -11.0871754, "posY": 1.74517751, "posZ": -16.8714619, "rotX": 0.014755086, "rotY": 180.0017, "rotZ": 0.07182745, "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": 265619, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -10.0647058, "posY": 1.72101593, "posZ": -17.24704, "rotX": 0.0435075164, "rotY": 179.901978, "rotZ": 5.72147655, "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": 265606, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "927ced", "Name": "Card", "Transform": { "posX": -10.9101038, "posY": 1.81254327, "posZ": -17.1553879, "rotX": 0.0139731448, "rotY": 180.001114, "rotZ": 0.07101253, "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": 265627, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -10.7546425, "posY": 1.76398373, "posZ": -17.0204449, "rotX": 0.0127874846, "rotY": 180.001541, "rotZ": 0.0704234242, "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": 265621, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -10.976366, "posY": 1.71357572, "posZ": -17.2476768, "rotX": 0.0136902276, "rotY": 180.000961, "rotZ": 0.07097512, "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": 265610, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -10.5090561, "posY": 1.71925616, "posZ": -17.1095371, "rotX": 0.0218146183, "rotY": 180.000458, "rotZ": 0.09416061, "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": 265611, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e556b0", "Name": "Card", "Transform": { "posX": -11.0106983, "posY": 1.78367043, "posZ": -17.2784214, "rotX": 0.014149081, "rotY": 180.001114, "rotZ": 0.0702355653, "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": 265624, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -9.75307751, "posY": 1.86945987, "posZ": -14.8983259, "rotX": 0.0123914713, "rotY": 179.999725, "rotZ": 0.0634560958, "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": 265622, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "51da1d", "Name": "Card", "Transform": { "posX": -11.1209822, "posY": 1.79352915, "posZ": -17.13826, "rotX": 0.0141256638, "rotY": 180.001083, "rotZ": 0.0699649751, "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": 265625, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -10.7192278, "posY": 1.75428307, "posZ": -17.0810242, "rotX": 0.0124462219, "rotY": 180.005188, "rotZ": 0.07227688, "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": 265620, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -11.0408068, "posY": 1.67750454, "posZ": -17.0968075, "rotX": 0.0138346441, "rotY": 180.000656, "rotZ": 0.07087799, "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": 265612, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -11.06552, "posY": 1.70516121, "posZ": -17.2269363, "rotX": 0.154696479, "rotY": 180.050583, "rotZ": 359.7933, "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": 265609, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -10.0719156, "posY": 1.955308, "posZ": -17.3484955, "rotX": 0.0393504426, "rotY": 179.97, "rotZ": 2.69095087, "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": 265608, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0224ae", "Name": "Card", "Transform": { "posX": -10.7969713, "posY": 1.86064589, "posZ": -16.9917278, "rotX": 0.0145775536, "rotY": 180.001816, "rotZ": 0.0761349052, "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": 265632, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bee61c", "Name": "Card", "Transform": { "posX": -10.873889, "posY": 1.77380836, "posZ": -17.276247, "rotX": 0.0137760108, "rotY": 180.001, "rotZ": 0.0715662763, "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": 265623, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -10.7091637, "posY": 1.73490882, "posZ": -17.0196152, "rotX": 0.0122056985, "rotY": 180.001526, "rotZ": 0.0715900958, "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": 265618, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dea686", "Name": "Card", "Transform": { "posX": -10.4156017, "posY": 1.94245458, "posZ": -17.0862141, "rotX": 0.03627745, "rotY": 180.027008, "rotZ": 2.114747, "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": 265607, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -10.79451, "posY": 1.69637513, "posZ": -16.99405, "rotX": 0.0140547119, "rotY": 179.99913, "rotZ": 0.07291281, "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": 265614, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cc57dd", "Name": "Card", "Transform": { "posX": -10.9826345, "posY": 1.79471433, "posZ": -17.1341572, "rotX": 356.564728, "rotY": 180.023315, "rotZ": 0.402957857, "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": 265605, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f79b98", "Name": "Card", "Transform": { "posX": -11.2641954, "posY": 1.6874963, "posZ": -17.0183754, "rotX": 0.0143403439, "rotY": 179.999878, "rotZ": 0.0705262348, "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": 265613, "SidewaysCard": false, "CustomDeck": { "2656": { "FaceURL": "https://i.imgur.com/DkuBK7s.jpg", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "7234af", "Name": "Custom_Tile", "Transform": { "posX": -36.7731, "posY": 1.63386714, "posZ": 3.86000085, "rotX": 0.0167915933, "rotY": 180.034286, "rotZ": 0.07996386, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "82e1ed", "Name": "Custom_Tile", "Transform": { "posX": -4.00120068, "posY": 1.58277893, "posZ": -14.5900021, "rotX": 359.919739, "rotY": 269.9926, "rotZ": 0.0168483239, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "Against the Wendigo", "Description": "click to set chaos token difficulty", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "name = 'Bread and Circuses'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "86cbee", "Name": "Custom_Tile", "Transform": { "posX": -17.1199989, "posY": 1.60420215, "posZ": -3.82999945, "rotX": 0.0167905074, "rotY": 180.034927, "rotZ": 0.07994603, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "88a1cf", "Name": "Card", "Transform": { "posX": -36.7732162, "posY": 1.64407492, "posZ": -7.699997, "rotX": 359.9201, "rotY": 269.9997, "rotZ": 0.0168403629, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fort McDonald", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265504, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9caa1f", "Name": "Custom_Tile", "Transform": { "posX": -30.2242, "posY": 1.624735, "posZ": 3.86000085, "rotX": 0.01679052, "rotY": 180.034866, "rotZ": 0.07995592, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "9e701d", "Name": "Deck", "Transform": { "posX": -2.724707, "posY": 1.62076044, "posZ": 0.3733013, "rotX": 359.919739, "rotY": 269.9826, "rotZ": 0.0168617275, "scaleX": 0.73, "scaleY": 1.0, "scaleZ": 0.73 }, "Nickname": "Agenda Deck", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "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": [ 265104, 265102, 265100 ], "CustomDeck": { "2651": { "FaceURL": "https://i.imgur.com/TPbHbHV.jpg", "BackURL": "https://i.imgur.com/XrbD4Tw.jpg", "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "aef4a6", "Name": "Card", "Transform": { "posX": 8.241792, "posY": 1.53264916, "posZ": -30.7547035, "rotX": 0.006770436, "rotY": 179.985916, "rotZ": 0.08004501, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265104, "SidewaysCard": false, "CustomDeck": { "2651": { "FaceURL": "https://i.imgur.com/TPbHbHV.jpg", "BackURL": "https://i.imgur.com/XrbD4Tw.jpg", "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "602342", "Name": "Card", "Transform": { "posX": 8.614923, "posY": 1.67276657, "posZ": -31.0103588, "rotX": 0.00586550776, "rotY": 179.953979, "rotZ": 0.08177879, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265102, "SidewaysCard": false, "CustomDeck": { "2651": { "FaceURL": "https://i.imgur.com/TPbHbHV.jpg", "BackURL": "https://i.imgur.com/XrbD4Tw.jpg", "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "142b14", "Name": "Card", "Transform": { "posX": -2.724573, "posY": 1.81919, "posZ": 0.37329933, "rotX": 359.9513, "rotY": 270.000061, "rotZ": 0.0136821009, "scaleX": 0.73, "scaleY": 1.0, "scaleZ": 0.73 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265100, "SidewaysCard": false, "CustomDeck": { "2651": { "FaceURL": "https://i.imgur.com/TPbHbHV.jpg", "BackURL": "https://i.imgur.com/XrbD4Tw.jpg", "NumWidth": 2, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "a69955", "Name": "Deck", "Transform": { "posX": -30.2242069, "posY": 1.65896475, "posZ": -0.02999876, "rotX": 359.9201, "rotY": 270.0005, "rotZ": 0.0168402158, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Shuffle and place north of Jetty", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "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": [ 265505, 265507, 265506 ], "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4a9a57", "Name": "Card", "Transform": { "posX": -13.6874838, "posY": 1.56611693, "posZ": -20.6126518, "rotX": 0.015515497, "rotY": 179.978333, "rotZ": 0.09350779, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "North Hanninah", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265505, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b6dfb7", "Name": "Card", "Transform": { "posX": -13.954318, "posY": 1.70705438, "posZ": -20.7125053, "rotX": 0.016482532, "rotY": 179.948883, "rotZ": 0.103121765, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "North Hanninah", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265507, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "74b4b9", "Name": "Card", "Transform": { "posX": -13.5352058, "posY": 1.72398651, "posZ": -20.8859653, "rotX": 0.0160375051, "rotY": 179.9938, "rotZ": 0.08108111, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "North Hanninah", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265506, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "b3ec68", "Name": "Deck", "Transform": { "posX": -12.7351093, "posY": 1.64195538, "posZ": -7.686099, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 0.0168423783, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locations (random shuffle)", "Description": "Shuffle and lay out to the left and right of the Hanninah locations", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "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": [ 265508, 265510, 265503, 265509, 265511 ], "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "6272cc", "Name": "Card", "Transform": { "posX": -3.47149754, "posY": 1.5518198, "posZ": -21.21375, "rotX": 0.0167285725, "rotY": 180.001465, "rotZ": 0.07965156, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Swamp", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265508, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "13b008", "Name": "Card", "Transform": { "posX": -3.61752748, "posY": 1.69260609, "posZ": -20.77361, "rotX": 0.00366885541, "rotY": 180.001175, "rotZ": 0.07321346, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sinister Taiga", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265510, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a29217", "Name": "Card", "Transform": { "posX": -2.93793035, "posY": 1.70897543, "posZ": -21.35919, "rotX": 0.0132774441, "rotY": 179.999527, "rotZ": 0.09234247, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Impenetrable Forest", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265503, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4068ea", "Name": "Card", "Transform": { "posX": -2.867111, "posY": 1.69516659, "posZ": -20.75426, "rotX": 0.0121836215, "rotY": 180.0001, "rotZ": 0.102864236, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Site of Ancient Stones", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265509, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a421fc", "Name": "Card", "Transform": { "posX": -3.28397274, "posY": 1.69379079, "posZ": -21.4160271, "rotX": 0.0173364673, "rotY": 180.000122, "rotZ": 0.07975545, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 265511, "SidewaysCard": false, "CustomDeck": { "2655": { "FaceURL": "https://i.imgur.com/Fm6wzfY.jpg", "BackURL": "https://i.imgur.com/2PIDbOe.jpg", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "b6a235", "Name": "Custom_Tile", "Transform": { "posX": -23.6765, "posY": 1.61334467, "posZ": -3.83, "rotX": 0.0167906042, "rotY": 180.034821, "rotZ": 0.07995018, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "d807d4", "Name": "Custom_Tile", "Transform": { "posX": -26.8814, "posY": 1.61893, "posZ": -0.0326002426, "rotX": 0.0798945948, "rotY": 90.00052, "rotZ": 359.983124, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "dda3d5", "Name": "Custom_Tile", "Transform": { "posX": -30.2242, "posY": 1.622475, "posZ": -3.83, "rotX": 0.01679063, "rotY": 180.034821, "rotZ": 0.07994997, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "e47eca", "Name": "Custom_Tile", "Transform": { "posX": -23.6765, "posY": 1.61560476, "posZ": 3.86000061, "rotX": 0.0167904962, "rotY": 180.034882, "rotZ": 0.0799509138, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } } ], "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 } } ] }