SCED/content/curated/en/scenario_dont_starve.json
2023-06-26 10:13:37 +02:00

12543 lines
426 KiB
JSON

{
"GUID": "ffc7ef",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 18.0559883,
"posY": 1.48149908,
"posZ": 21.6431026,
"rotX": -5.76342574E-09,
"rotY": 270.000031,
"rotZ": -1.51001572E-07,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Don't Starve",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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/1646593716898209387/B827263B809A6C8E1042BDF1C8D33E58458C2EF4/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"03c0bb\":{\"lock\":false,\"pos\":{\"x\":-13.2817,\"y\":1.6339,\"z\":11.4672},\"rot\":{\"x\":359.9201,\"y\":270.0011,\"z\":180.0168}},\"101cc5\":{\"lock\":false,\"pos\":{\"x\":-20.9625,\"y\":1.6446,\"z\":11.449},\"rot\":{\"x\":359.9201,\"y\":270.0013,\"z\":180.0168}},\"26c474\":{\"lock\":false,\"pos\":{\"x\":-9.0754,\"y\":1.5969,\"z\":-2.6476},\"rot\":{\"x\":359.9318,\"y\":314.9216,\"z\":359.9566}},\"2b2b06\":{\"lock\":false,\"pos\":{\"x\":-13.2676,\"y\":1.6328,\"z\":7.6267},\"rot\":{\"x\":359.9201,\"y\":269.9982,\"z\":180.0168}},\"2f03c9\":{\"lock\":false,\"pos\":{\"x\":-8.9964,\"y\":1.5984,\"z\":2.6779},\"rot\":{\"x\":359.9318,\"y\":314.8497,\"z\":359.9567}},\"3fc76d\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6393,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":270.004,\"z\":180.0168}},\"41b0cb\":{\"lock\":false,\"pos\":{\"x\":-9.0981,\"y\":1.6675,\"z\":11.2616},\"rot\":{\"x\":0.0792,\"y\":90.0085,\"z\":359.983}},\"51f503\":{\"lock\":false,\"pos\":{\"x\":-20.9583,\"y\":1.6435,\"z\":7.5487},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":180.0168}},\"53e18a\":{\"lock\":false,\"pos\":{\"x\":0.5376,\"y\":1.3974,\"z\":5.7188},\"rot\":{\"x\":359.9832,\"y\":0.0005,\"z\":359.9197}},\"5bdd04\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6381,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0168}},\"5c65b6\":{\"lock\":false,\"pos\":{\"x\":0.4164,\"y\":1.595,\"z\":1.8735},\"rot\":{\"x\":359.9197,\"y\":270.007,\"z\":0.0168}},\"75ab30\":{\"lock\":false,\"pos\":{\"x\":-0.2079,\"y\":1.6269,\"z\":-16.1724},\"rot\":{\"x\":359.9197,\"y\":269.9964,\"z\":0.0168}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":45,\"z\":0}},\"90c2c5\":{\"lock\":false,\"pos\":{\"x\":-21.0719,\"y\":1.6459,\"z\":15.3045},\"rot\":{\"x\":359.9201,\"y\":270.0008,\"z\":180.0168}},\"bc1d42\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":180.0018,\"z\":0.0803}},\"bc74be\":{\"lock\":false,\"pos\":{\"x\":-13.2566,\"y\":1.635,\"z\":15.2381},\"rot\":{\"x\":359.9201,\"y\":270.0049,\"z\":180.0168}},\"c7debb\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6404,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0168}},\"ce695b\":{\"lock\":false,\"pos\":{\"x\":12.2505,\"y\":1.4585,\"z\":-20.0146},\"rot\":{\"x\":359.9201,\"y\":270.0261,\"z\":0.0168}},\"d2bee9\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7251,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"d72f74\":{\"lock\":false,\"pos\":{\"x\":-2.6887,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0008,\"z\":0.0803}},\"e090cf\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.5262,\"z\":-28.0141},\"rot\":{\"x\":0.0799,\"y\":89.9897,\"z\":359.9831}},\"e14959\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9958,\"z\":0.0168}},\"f1e231\":{\"lock\":false,\"pos\":{\"x\":14.3603,\"y\":1.4694,\"z\":26.7284},\"rot\":{\"x\":359.9203,\"y\":269.5806,\"z\":0.0175}},\"f69eff\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f1e231",
"Name": "Custom_PDF",
"Transform": {
"posX": 14.3603249,
"posY": 1.46936023,
"posZ": 26.7284184,
"rotX": 359.920258,
"rotY": 269.580566,
"rotZ": 0.01745596,
"scaleX": 3.77516055,
"scaleY": 1.0,
"scaleZ": 3.77516055
},
"Nickname": "Don't Starve Campaign Guide",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1870695908503188212/DB975483FCC30441C31E659DA928EC0A27F4B968/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ce695b",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2505188,
"posY": 1.4585371,
"posZ": -20.0146065,
"rotX": 359.9201,
"rotY": 270.0261,
"rotZ": 0.0168374144,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Don't Starve Investigators",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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/1870695908503436245/EDB6DD669F01A9F3BCA6F9CADE534E53D74D004A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0dd058\":{\"lock\":false,\"pos\":{\"x\":15.0019,\"y\":1.312,\"z\":-71.9008},\"rot\":{\"x\":359.0992,\"y\":269.9767,\"z\":0.0172}},\"126012\":{\"lock\":false,\"pos\":{\"x\":18.4783,\"y\":1.2951,\"z\":-49.9344},\"rot\":{\"x\":0.0208,\"y\":269.9798,\"z\":0.0168}},\"137f5a\":{\"lock\":false,\"pos\":{\"x\":18.7095,\"y\":1.2912,\"z\":-63.3831},\"rot\":{\"x\":0.0208,\"y\":269.9797,\"z\":0.0168}},\"1942a1\":{\"lock\":false,\"pos\":{\"x\":11.7731,\"y\":1.3227,\"z\":-71.8042},\"rot\":{\"x\":0.0208,\"y\":269.9924,\"z\":0.0168}},\"20248d\":{\"lock\":false,\"pos\":{\"x\":22.4525,\"y\":1.2922,\"z\":-64.8067},\"rot\":{\"x\":0.0208,\"y\":269.9924,\"z\":0.0168}},\"24d236\":{\"lock\":false,\"pos\":{\"x\":18.4016,\"y\":1.287,\"z\":-77.4889},\"rot\":{\"x\":0.0208,\"y\":269.9797,\"z\":0.0168}},\"2d333b\":{\"lock\":false,\"pos\":{\"x\":11.9713,\"y\":1.3249,\"z\":-64.3929},\"rot\":{\"x\":0.0208,\"y\":269.9923,\"z\":0.0168}},\"339aef\":{\"lock\":false,\"pos\":{\"x\":14.9234,\"y\":1.3334,\"z\":-76.2431},\"rot\":{\"x\":359.0659,\"y\":269.9921,\"z\":0.0169}},\"422c0f\":{\"lock\":false,\"pos\":{\"x\":22.7733,\"y\":1.2944,\"z\":-57.7168},\"rot\":{\"x\":0.0208,\"y\":269.9924,\"z\":0.0168}},\"436c7d\":{\"lock\":false,\"pos\":{\"x\":22.6591,\"y\":1.2962,\"z\":-51.3018},\"rot\":{\"x\":0.0208,\"y\":269.9924,\"z\":0.0168}},\"4915bc\":{\"lock\":false,\"pos\":{\"x\":25.3305,\"y\":1.2912,\"z\":-71.5483},\"rot\":{\"x\":0.0208,\"y\":270.0118,\"z\":0.0168}},\"4c43e6\":{\"lock\":false,\"pos\":{\"x\":29.3401,\"y\":1.295,\"z\":-63.5084},\"rot\":{\"x\":0.0208,\"y\":269.9799,\"z\":0.0168}},\"55a042\":{\"lock\":false,\"pos\":{\"x\":22.3415,\"y\":1.2881,\"z\":-78.6341},\"rot\":{\"x\":0.0208,\"y\":269.9927,\"z\":0.0168}},\"58dbfe\":{\"lock\":false,\"pos\":{\"x\":15.082,\"y\":1.3119,\"z\":-69.4056},\"rot\":{\"x\":359.1305,\"y\":270.0356,\"z\":0.0162}},\"591617\":{\"lock\":false,\"pos\":{\"x\":18.5116,\"y\":1.2932,\"z\":-56.3058},\"rot\":{\"x\":0.0208,\"y\":269.9798,\"z\":0.0168}},\"6168be\":{\"lock\":false,\"pos\":{\"x\":26.1518,\"y\":1.2963,\"z\":-55.1087},\"rot\":{\"x\":0.0208,\"y\":269.9774,\"z\":0.0168}},\"772491\":{\"lock\":false,\"pos\":{\"x\":18.4641,\"y\":1.289,\"z\":-70.7254},\"rot\":{\"x\":0.0208,\"y\":269.9797,\"z\":0.0168}},\"77b7ce\":{\"lock\":false,\"pos\":{\"x\":25.3358,\"y\":1.2892,\"z\":-78.5835},\"rot\":{\"x\":0.0208,\"y\":269.9935,\"z\":0.0168}},\"7f3ff8\":{\"lock\":false,\"pos\":{\"x\":14.754,\"y\":1.3171,\"z\":-64.5646},\"rot\":{\"x\":358.9859,\"y\":269.9846,\"z\":0.0171}},\"8046cc\":{\"lock\":false,\"pos\":{\"x\":14.7824,\"y\":1.3188,\"z\":-57.5442},\"rot\":{\"x\":359.0003,\"y\":269.9767,\"z\":0.0168}},\"86e858\":{\"lock\":false,\"pos\":{\"x\":29.3401,\"y\":1.291,\"z\":-77.3085},\"rot\":{\"x\":0.0208,\"y\":269.9797,\"z\":0.0168}},\"877d87\":{\"lock\":false,\"pos\":{\"x\":14.7515,\"y\":1.3179,\"z\":-61.9227},\"rot\":{\"x\":358.9846,\"y\":269.9847,\"z\":0.0171}},\"891da6\":{\"lock\":false,\"pos\":{\"x\":11.7922,\"y\":1.3234,\"z\":-69.4186},\"rot\":{\"x\":0.0208,\"y\":269.9967,\"z\":0.0168}},\"89d1eb\":{\"lock\":false,\"pos\":{\"x\":29.3401,\"y\":1.2971,\"z\":-56.6084},\"rot\":{\"x\":0.0208,\"y\":269.9799,\"z\":0.0168}},\"8a1ca9\":{\"lock\":false,\"pos\":{\"x\":25.4978,\"y\":1.2933,\"z\":-64.6392},\"rot\":{\"x\":0.0208,\"y\":269.9879,\"z\":0.0168}},\"94d7b6\":{\"lock\":false,\"pos\":{\"x\":25.8916,\"y\":1.2974,\"z\":-51.1694},\"rot\":{\"x\":0.0208,\"y\":269.9856,\"z\":0.0168}},\"98eb44\":{\"lock\":false,\"pos\":{\"x\":14.9247,\"y\":1.3108,\"z\":-78.7453},\"rot\":{\"x\":359.0667,\"y\":269.9937,\"z\":0.0168}},\"a22ede\":{\"lock\":false,\"pos\":{\"x\":29.34,\"y\":1.2991,\"z\":-49.7096},\"rot\":{\"x\":0.0208,\"y\":269.9798,\"z\":0.0168}},\"ab40b7\":{\"lock\":false,\"pos\":{\"x\":25.9441,\"y\":1.2982,\"z\":-48.5773},\"rot\":{\"x\":0.0208,\"y\":269.9688,\"z\":0.0168}},\"b80254\":{\"lock\":false,\"pos\":{\"x\":25.5094,\"y\":1.2941,\"z\":-62.1273},\"rot\":{\"x\":0.0208,\"y\":270.0163,\"z\":0.0168}},\"b8b56d\":{\"lock\":false,\"pos\":{\"x\":14.8541,\"y\":1.3186,\"z\":-54.9187},\"rot\":{\"x\":359.0348,\"y\":269.98,\"z\":0.0168}},\"bf117c\":{\"lock\":false,\"pos\":{\"x\":11.8737,\"y\":1.3207,\"z\":-78.7041},\"rot\":{\"x\":0.0208,\"y\":269.9925,\"z\":0.0168}},\"c5f617\":{\"lock\":false,\"pos\":{\"x\":29.3401,\"y\":1.293,\"z\":-70.4085},\"rot\":{\"x\":0.0208,\"y\":269.9797,\"z\":0.0168}},\"d504e8\":{\"lock\":false,\"pos\":{\"x\":25.3835,\"y\":1.3117,\"z\":-76.0529},\"rot\":{\"x\":0.0208,\"y\":269.9958,\"z\":0.0168}},\"db6b94\":{\"lock\":false,\"pos\":{\"x\":26.0573,\"y\":1.2956,\"z\":-57.6944},\"rot\":{\"x\":0.0208,\"y\":270.014,\"z\":0.0168}},\"e0e38b\":{\"lock\":false,\"pos\":{\"x\":22.2959,\"y\":1.2902,\"z\":-71.3452},\"rot\":{\"x\":0.0208,\"y\":269.9924,\"z\":0.0168}},\"e89b90\":{\"lock\":false,\"pos\":{\"x\":25.3452,\"y\":1.292,\"z\":-69.0238},\"rot\":{\"x\":0.0208,\"y\":269.9898,\"z\":0.0168}},\"e94d08\":{\"lock\":false,\"pos\":{\"x\":12.0781,\"y\":1.3287,\"z\":-51.5321},\"rot\":{\"x\":0.0208,\"y\":269.9926,\"z\":0.0168}},\"f12f0b\":{\"lock\":false,\"pos\":{\"x\":14.7919,\"y\":1.3213,\"z\":-48.6396},\"rot\":{\"x\":359.0049,\"y\":269.9997,\"z\":0.0168}},\"f7e424\":{\"lock\":false,\"pos\":{\"x\":12.0523,\"y\":1.327,\"z\":-57.5175},\"rot\":{\"x\":0.0208,\"y\":269.9923,\"z\":0.0168}},\"fade28\":{\"lock\":false,\"pos\":{\"x\":22.9413,\"y\":1.2952,\"z\":-55.114},\"rot\":{\"x\":0.0208,\"y\":269.9793,\"z\":0.0168}},\"fe9877\":{\"lock\":false,\"pos\":{\"x\":14.9264,\"y\":1.3188,\"z\":-51.3848},\"rot\":{\"x\":359.0674,\"y\":269.9998,\"z\":0.0168}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0dd058",
"Name": "CardCustom",
"Transform": {
"posX": 15.0018978,
"posY": 1.31200838,
"posZ": -71.9008,
"rotX": 359.099152,
"rotY": 269.9767,
"rotZ": 0.01717626,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fatalistic",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270300,
"SidewaysCard": false,
"CustomDeck": {
"2703": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503150605/1B2EF77E91E26F21DFFECA863F70FAC89CBC5CF3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "126012",
"Name": "CardCustom",
"Transform": {
"posX": 18.4783,
"posY": 1.29507184,
"posZ": -49.9344,
"rotX": 0.0208146814,
"rotY": 269.9798,
"rotZ": 0.0167637169,
"scaleX": 0.7823122,
"scaleY": 1.0,
"scaleZ": 0.7823122
},
"Nickname": "Wickerbottom",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267300,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503121486/EDD9FB89F36AA9A879D1BDDC58B88A28236D0A3C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503121669/2F68B390AE9038CF0700D3FD42D741D458E801DC/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "137f5a",
"Name": "CardCustom",
"Transform": {
"posX": 18.7095,
"posY": 1.29121912,
"posZ": -63.3831,
"rotX": 0.0208148286,
"rotY": 269.9797,
"rotZ": 0.0167638063,
"scaleX": 0.7823122,
"scaleY": 1.0,
"scaleZ": 0.7823122
},
"Nickname": "Webber",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269100,
"SidewaysCard": false,
"CustomDeck": {
"2691": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503141207/53442B15BD8C72F6B31927651DB41150DFF7BC39/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503141375/17E7B11CE7C1C5B3781BB6F838300E0B0ABEC917/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1942a1",
"Name": "CardCustom",
"Transform": {
"posX": 11.7731018,
"posY": 1.3226819,
"posZ": -71.8042,
"rotX": 0.0208109189,
"rotY": 269.9924,
"rotZ": 0.01676816,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wendy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269900,
"SidewaysCard": false,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898369138/D8406B7998B7405DEDBEFCF28D96CEC6BA6F25F5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898369362/5202AB9A67D4249826AE59CFC1DFE2382B5E0154/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "20248d",
"Name": "CardCustom",
"Transform": {
"posX": 22.4525,
"posY": 1.292162,
"posZ": -64.8067,
"rotX": 0.0208111033,
"rotY": 269.9924,
"rotZ": 0.01676843,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Woodie",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269000,
"SidewaysCard": false,
"CustomDeck": {
"2690": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898327823/0223C3315CF94776EF1706E4B607EACE73DFD1C7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898328008/9D3D3D7EB1E5F1DDF48830A71BF6C073A968600E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "24d236",
"Name": "CardCustom",
"Transform": {
"posX": 18.4016,
"posY": 1.28697848,
"posZ": -77.4889,
"rotX": 0.0208147019,
"rotY": 269.9797,
"rotZ": 0.0167637747,
"scaleX": 0.7823122,
"scaleY": 1.0,
"scaleZ": 0.7823122
},
"Nickname": "Wes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270800,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503154461/1728FCB52878B682711470B78F8BBC4AE29E3002/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503154625/DDB4EBE11ACDBBF5E2C3E84D228EE0765641E763/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d333b",
"Name": "CardCustom",
"Transform": {
"posX": 11.9712982,
"posY": 1.32492316,
"posZ": -64.3929,
"rotX": 0.0208107829,
"rotY": 269.9923,
"rotZ": 0.0167681482,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Webber",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269400,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898338285/908CADFD50EF51C43A6169CF39DF16DE4B63CC25/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898338475/D2578D9603E572FD676424E3573FD0249F909D12/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "339aef",
"Name": "Deck",
"Transform": {
"posX": 14.9233465,
"posY": 1.33336461,
"posZ": -76.24309,
"rotX": 359.0659,
"rotY": 269.992065,
"rotZ": 0.0169332735,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Wes' Balloons",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270900,
270900,
270900
],
"CustomDeck": {
"2709": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503155580/4BF34BADE4B409DA6F8E920187330FA2991DC2E8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "afb27d",
"Name": "CardCustom",
"Transform": {
"posX": 14.9233894,
"posY": 1.31154716,
"posZ": -76.24314,
"rotX": 359.0667,
"rotY": 269.992432,
"rotZ": 0.0196951684,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wes' Balloons",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270900,
"SidewaysCard": false,
"CustomDeck": {
"2709": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503155580/4BF34BADE4B409DA6F8E920187330FA2991DC2E8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6ad428",
"Name": "CardCustom",
"Transform": {
"posX": 14.8887033,
"posY": 1.34815431,
"posZ": -76.28714,
"rotX": 359.068878,
"rotY": 269.9925,
"rotZ": 0.0132724876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wes' Balloons",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270900,
"SidewaysCard": false,
"CustomDeck": {
"2709": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503155580/4BF34BADE4B409DA6F8E920187330FA2991DC2E8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "afb27d",
"Name": "CardCustom",
"Transform": {
"posX": 14.8879919,
"posY": 1.39258039,
"posZ": -76.2871246,
"rotX": 359.065979,
"rotY": 269.9925,
"rotZ": 0.0166509058,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wes' Balloons",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270900,
"SidewaysCard": false,
"CustomDeck": {
"2709": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503155580/4BF34BADE4B409DA6F8E920187330FA2991DC2E8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "422c0f",
"Name": "CardCustom",
"Transform": {
"posX": 22.7733,
"posY": 1.2943536,
"posZ": -57.7168,
"rotX": 0.0208109468,
"rotY": 269.9924,
"rotZ": 0.0167679526,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wolfgang",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268400,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898307202/06E319F483DAE42E316E3C311826B85ECF1AB797/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898307440/8C6A9090AA0A50FF8DEA087DF87781377D62F177/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "436c7d",
"Name": "CardCustom",
"Transform": {
"posX": 22.6591,
"posY": 1.2961899,
"posZ": -51.3018,
"rotX": 0.0208107568,
"rotY": 269.9924,
"rotZ": 0.016768273,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wilson",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268600,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898261715/51883B8AF61F34C7F63A38BE06C4CD3836B759B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898262228/145D6CCEC835A4D47004186343068B1EBF6F633E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4915bc",
"Name": "CardCustom",
"Transform": {
"posX": 25.3305,
"posY": 1.29123366,
"posZ": -71.5483,
"rotX": 0.020805005,
"rotY": 270.0118,
"rotZ": 0.0167754032,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Willow's Lighter",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269700,
"SidewaysCard": false,
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503145775/C87090C35ECE9EF79EFFCBB661067C2776EF9B0D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4c43e6",
"Name": "CardCustom",
"Transform": {
"posX": 29.3401,
"posY": 1.29504323,
"posZ": -63.5084,
"rotX": 0.0208146945,
"rotY": 269.9799,
"rotZ": 0.0167638324,
"scaleX": 0.7823122,
"scaleY": 1.0,
"scaleZ": 0.7823122
},
"Nickname": "Woodie",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268700,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503138170/AA9CE5992F949D915C2891002E48C453382A724C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503138390/AAD18A067C0F1C405EAB3965D23680A08F9D1519/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "55a042",
"Name": "CardCustom",
"Transform": {
"posX": 22.3415,
"posY": 1.288074,
"posZ": -78.6341,
"rotX": 0.02081077,
"rotY": 269.9927,
"rotZ": 0.0167680737,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "WX-78",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270700,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898377962/F07EF92FD5C0716D56FDE99BC73F135E6C0D9EAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898378189/E48F1DC4F2B1850A01E20FECF138AB24AD6AFE95/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "58dbfe",
"Name": "CardCustom",
"Transform": {
"posX": 15.082,
"posY": 1.31192756,
"posZ": -69.4056,
"rotX": 359.130554,
"rotY": 270.035522,
"rotZ": 0.0161747634,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abigail's Flower",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270100,
"SidewaysCard": false,
"CustomDeck": {
"2701": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503148964/45705F45F252AE1147367F32385E92A8032293D0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "591617",
"Name": "CardCustom",
"Transform": {
"posX": 18.5116,
"posY": 1.29321885,
"posZ": -56.3058,
"rotX": 0.02081489,
"rotY": 269.9798,
"rotZ": 0.0167638529,
"scaleX": 0.7823122,
"scaleY": 1.0,
"scaleZ": 0.7823122
},
"Nickname": "Wigfrid",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268000,
"SidewaysCard": false,
"CustomDeck": {
"2680": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503131768/0FE7049AB9D711136BC57EFE0D13C5561BB8D3C2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503131919/BD7D19877445DAAA5A448210211E9780BA7F095C/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6168be",
"Name": "CardCustom",
"Transform": {
"posX": 26.1518,
"posY": 1.296344,
"posZ": -55.1087,
"rotX": 0.0208150186,
"rotY": 269.9774,
"rotZ": 0.0167629961,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wolfgang's Appetite",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267700,
"SidewaysCard": false,
"CustomDeck": {
"2677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503129261/C735F2235AE8DA81E4B0567825B36E55C014BFBA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "772491",
"Name": "CardCustom",
"Transform": {
"posX": 18.4641,
"posY": 1.28898084,
"posZ": -70.7254,
"rotX": 0.02081467,
"rotY": 269.9797,
"rotZ": 0.0167636741,
"scaleX": 0.7823122,
"scaleY": 1.0,
"scaleZ": 0.7823122
},
"Nickname": "Wendy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270000,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503148167/32A89B55C7093617CD1FC2560D104EB0A4B39656/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503148334/066A75B147C7C1FED1E7310A54C11B7DC8B92F7E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77b7ce",
"Name": "CardCustom",
"Transform": {
"posX": 25.3358,
"posY": 1.28917634,
"posZ": -78.5835,
"rotX": 0.0208104085,
"rotY": 269.9935,
"rotZ": 0.0167686529,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overloaded",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270600,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503152940/9F0A21246C4B369B5B3058F8A6D4212433915509/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f3ff8",
"Name": "CardCustom",
"Transform": {
"posX": 14.7539978,
"posY": 1.3170917,
"posZ": -64.5646,
"rotX": 358.9859,
"rotY": 269.9846,
"rotZ": 0.0170801748,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frightening Monster",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269300,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503142459/BCA118908AC49BFB236B58F9058E808A7F909C52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8046cc",
"Name": "CardCustom",
"Transform": {
"posX": 14.7823982,
"posY": 1.31877291,
"posZ": -57.5442,
"rotX": 359.000275,
"rotY": 269.9767,
"rotZ": 0.0172324684,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Valhalla Awaits",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268200,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503133163/B41409EA7317D580F2918E705378AE01F4154BE3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "86e858",
"Name": "CardCustom",
"Transform": {
"posX": 29.3401,
"posY": 1.2910037,
"posZ": -77.3085,
"rotX": 0.0208146572,
"rotY": 269.9797,
"rotZ": 0.0167638026,
"scaleX": 0.7823122,
"scaleY": 1.0,
"scaleZ": 0.7823122
},
"Nickname": "WX-78",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270400,
"SidewaysCard": false,
"CustomDeck": {
"2704": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503151346/1E0BF447AAB41E109E9D4FBD7BA1F6C2C983741F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503151495/8BA803246B1DE40C32E237DD6ED629C08D06E780/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "877d87",
"Name": "CardCustom",
"Transform": {
"posX": 14.7515,
"posY": 1.31789827,
"posZ": -61.9227,
"rotX": 358.984619,
"rotY": 269.9846,
"rotZ": 0.0170774627,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spider Nest",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269200,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503141929/C1EE415ECAE4DB8FFA5D27F468F4EBDDBF291CE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "891da6",
"Name": "CardCustom",
"Transform": {
"posX": 11.7921982,
"posY": 1.32338715,
"posZ": -69.4186,
"rotX": 0.0208095647,
"rotY": 269.9967,
"rotZ": 0.0167699959,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abigail",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270200,
"SidewaysCard": false,
"CustomDeck": {
"2702": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503149611/A80B47265B6A6FFA5B25462C054EA579F61E7A58/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "89d1eb",
"Name": "CardCustom",
"Transform": {
"posX": 29.3401,
"posY": 1.297063,
"posZ": -56.6084,
"rotX": 0.0208147019,
"rotY": 269.9799,
"rotZ": 0.01676387,
"scaleX": 0.7823122,
"scaleY": 1.0,
"scaleZ": 0.7823122
},
"Nickname": "Wolfgang",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267600,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503128247/AB0EC4F5FBD31731DFEA1FD605AA077DD0B8490E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503128412/AF5D672251AB45FF08F02F8B3906F25EBBC6F20B/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8a1ca9",
"Name": "CardCustom",
"Transform": {
"posX": 25.4978,
"posY": 1.29331684,
"posZ": -64.6392,
"rotX": 0.0208119266,
"rotY": 269.9879,
"rotZ": 0.01676657,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Werebeaver Curse",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268900,
"SidewaysCard": false,
"CustomDeck": {
"2689": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503139458/D7E694BB13C17435AA3BD945567D78DC3AD9AB4A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "94d7b6",
"Name": "CardCustom",
"Transform": {
"posX": 25.8916,
"posY": 1.29740274,
"posZ": -51.1694,
"rotX": 0.020812653,
"rotY": 269.9856,
"rotZ": 0.01676581,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flawed Hypotheses",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267200,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503120027/6A4D414E9E962CEE400A8448B330500A5CFD3517/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98eb44",
"Name": "CardCustom",
"Transform": {
"posX": 14.9247007,
"posY": 1.31084585,
"posZ": -78.7453,
"rotX": 359.06662,
"rotY": 269.9938,
"rotZ": 0.0168846529,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Slip-Up",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271000,
"SidewaysCard": false,
"CustomDeck": {
"2710": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503156269/2EA4CD85402835610CDDD998B723C1A4AE4534B1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a22ede",
"Name": "CardCustom",
"Transform": {
"posX": 29.34,
"posY": 1.29908228,
"posZ": -49.7096,
"rotX": 0.0208147317,
"rotY": 269.9798,
"rotZ": 0.0167637262,
"scaleX": 0.7823122,
"scaleY": 1.0,
"scaleZ": 0.7823122
},
"Nickname": "Wilson",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267000,
"SidewaysCard": false,
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503117848/9DD8ADC86B1CE7C74AF384C0B407B54FAB15C6A2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503118064/3FAB64603F6B28FE65D5172FFC24E509A3A756EE/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab40b7",
"Name": "CardCustom",
"Transform": {
"posX": 25.9441,
"posY": 1.29818046,
"posZ": -48.5773,
"rotX": 0.02081761,
"rotY": 269.9688,
"rotZ": 0.0167598464,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unearthly Knowledge",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267100,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503119360/ED7E1D578F009041261DD206C03826FD25282A5E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b80254",
"Name": "CardCustom",
"Transform": {
"posX": 25.5094,
"posY": 1.2940563,
"posZ": -62.1273,
"rotX": 0.0208036844,
"rotY": 270.0163,
"rotZ": 0.0167771112,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268800,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503138903/4A8174B7407C6816F181FB89DF8EB528269CB697/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8b56d",
"Name": "CardCustom",
"Transform": {
"posX": 14.8541021,
"posY": 1.31864417,
"posZ": -54.9187,
"rotX": 359.034821,
"rotY": 269.98,
"rotZ": 0.01715117,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Battle Spear",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268100,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503132561/5CC3A69D6A162439C84246023B940FB0867E242E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf117c",
"Name": "CardCustom",
"Transform": {
"posX": 11.8736982,
"posY": 1.32069874,
"posZ": -78.7041,
"rotX": 0.0208109748,
"rotY": 269.9925,
"rotZ": 0.0167681929,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271100,
"SidewaysCard": false,
"CustomDeck": {
"2711": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898387648/D395882487A1E165E202291F7229BAF988C3A6E1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898387958/C51CB2D32CB5CED32A2CC5C2860F0F08FA7D73DC/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5f617",
"Name": "CardCustom",
"Transform": {
"posX": 29.3401,
"posY": 1.29302347,
"posZ": -70.4085,
"rotX": 0.02081453,
"rotY": 269.9797,
"rotZ": 0.0167637859,
"scaleX": 0.7823122,
"scaleY": 1.0,
"scaleZ": 0.7823122
},
"Nickname": "Willow",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269500,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503144219/FA655D43EAAC1B921D88EA54B4AB642DE0F9EE20/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503144420/6F93A88A4F5C1D47184DF7928523192CE0363775/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d504e8",
"Name": "Deck",
"Transform": {
"posX": 25.3835068,
"posY": 1.31170225,
"posZ": -76.0528946,
"rotX": 0.0208093747,
"rotY": 269.9958,
"rotZ": 0.0167690124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Upgraded",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
270500,
270500,
270500
],
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503152127/BA70B81729F370B67A57A4B55B8EE8F0C5FC0344/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5d9dd2",
"Name": "CardCustom",
"Transform": {
"posX": 25.3835163,
"posY": 1.289881,
"posZ": -76.05294,
"rotX": 0.0213448443,
"rotY": 269.99588,
"rotZ": 0.0132220807,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Upgraded",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270500,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503152127/BA70B81729F370B67A57A4B55B8EE8F0C5FC0344/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "be029c",
"Name": "CardCustom",
"Transform": {
"posX": 25.41341,
"posY": 1.32684159,
"posZ": -76.2576,
"rotX": 0.0302297678,
"rotY": 269.99588,
"rotZ": 0.007038281,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Upgraded",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270500,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503152127/BA70B81729F370B67A57A4B55B8EE8F0C5FC0344/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d9dd2",
"Name": "CardCustom",
"Transform": {
"posX": 25.4134254,
"posY": 1.37119138,
"posZ": -76.25758,
"rotX": 0.0206047725,
"rotY": 269.99588,
"rotZ": 0.0167483073,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Upgraded",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270500,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503152127/BA70B81729F370B67A57A4B55B8EE8F0C5FC0344/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "db6b94",
"Name": "CardCustom",
"Transform": {
"posX": 26.0573,
"posY": 1.295553,
"posZ": -57.6944,
"rotX": 0.0208045244,
"rotY": 270.014,
"rotZ": 0.0167762823,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nyctophobia",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267900,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503130934/1C0C8CAA693C3C6CCBBFEBB5F07BDACDD0B2C5F4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0e38b",
"Name": "CardCustom",
"Transform": {
"posX": 22.2959,
"posY": 1.290191,
"posZ": -71.3452,
"rotX": 0.0208108611,
"rotY": 269.9924,
"rotZ": 0.0167684536,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Willow",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269800,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898349923/17E47E62B24CA3A22F6775169DE012564AD0F16A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898350165/B88C8A78EFC48AC850481D655BCBBA2D151B3EE0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e89b90",
"Name": "CardCustom",
"Transform": {
"posX": 25.3452,
"posY": 1.291978,
"posZ": -69.0238,
"rotX": 0.020811541,
"rotY": 269.9898,
"rotZ": 0.01676726,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bernie",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269600,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503145158/22B3E92CF8D5953086EA4FE23820F5328397BC0B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e94d08",
"Name": "CardCustom",
"Transform": {
"posX": 12.0781,
"posY": 1.32872653,
"posZ": -51.5321,
"rotX": 0.020810809,
"rotY": 269.992523,
"rotZ": 0.0167685468,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wickerbottom",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268500,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898285374/32313CF0292C6D1D2F9F18D4540A7B7A78A0B0E5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898285573/BE19A7B7A19AE47511D2F7C2F0FBBD926E4E0C19/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f12f0b",
"Name": "CardCustom",
"Transform": {
"posX": 14.7918978,
"posY": 1.32125759,
"posZ": -48.6396,
"rotX": 359.004944,
"rotY": 269.999725,
"rotZ": 0.0167724565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On Tentacles",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267400,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503122349/62B41054D5873AE4CA5BCD251F9839DD1D4D5A07/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7e424",
"Name": "CardCustom",
"Transform": {
"posX": 12.0523024,
"posY": 1.32696521,
"posZ": -57.5175,
"rotX": 0.0208112113,
"rotY": 269.9923,
"rotZ": 0.01676817,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wigfrid",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268300,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898318510/523698D2B84F5DCDEDB4B5281E324A8435BDAD44/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898318821/5BC8A25AFF98DEC97700898C9ED6AB4D0D5C6EC7/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fade28",
"Name": "CardCustom",
"Transform": {
"posX": 22.9413,
"posY": 1.29517663,
"posZ": -55.114,
"rotX": 0.0208146367,
"rotY": 269.9793,
"rotZ": 0.0167637523,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I AM MIGHTY!\"",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 587900,
"SidewaysCard": false,
"CustomDeck": {
"5879": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503458240/6CA8C8B8A94C99121F36FDF326C6145409C7175C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fe9877",
"Name": "CardCustom",
"Transform": {
"posX": 14.9264011,
"posY": 1.31883562,
"posZ": -51.3848,
"rotX": 359.067352,
"rotY": 269.9997,
"rotZ": 0.016776206,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insomnia",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267500,
"SidewaysCard": false,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503123086/744EA9D22492F942EFC0CEE94C3DF58DB54F0332/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
},
{
"GUID": "e090cf",
"Name": "Notecard",
"Transform": {
"posX": 12.2499943,
"posY": 1.52618241,
"posZ": -28.01406,
"rotX": 0.07987458,
"rotY": 89.98966,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Don't Starve Investigators",
"Description": "Each investigator will be laid out in the player cards upgrade area to the right\n\nSave a copy of the Don't Stave custom data helper (next to the chaos bag) for help with tokens on player cards",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a167a",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.703489,
"posY": 1.55830979,
"posZ": 14.286953,
"rotX": 359.955444,
"rotY": 224.7326,
"rotZ": 0.06888022,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.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": "48b747",
"Name": "CardCustom",
"Transform": {
"posX": 23.4294987,
"posY": 2.39726114,
"posZ": -65.96882,
"rotX": -0.00162686571,
"rotY": 270.018982,
"rotZ": 5.001122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Meat Effigy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266900,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503116279/0315498EC4E14E41E9C31770EA837C9C4690303C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fcdce4",
"Name": "CardCustom",
"Transform": {
"posX": 31.6918488,
"posY": 2.30453944,
"posZ": -66.40174,
"rotX": 7.865403E-07,
"rotY": 269.9886,
"rotZ": 4.335204E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chester",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266800,
"SidewaysCard": false,
"CustomDeck": {
"2668": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503114360/3DBB0F9939EAF6576A3402D3010A7563BAC0CCEC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d9ce3",
"Name": "Deck",
"Transform": {
"posX": 23.3798027,
"posY": 2.3623457,
"posZ": -53.5066071,
"rotX": 359.920135,
"rotY": 270.002716,
"rotZ": 0.0168705117,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Device Assets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
266728,
266729,
266730,
266731
],
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "9f913c",
"Name": "Card",
"Transform": {
"posX": 4.49044466,
"posY": 1.47990775,
"posZ": -30.3598614,
"rotX": 359.9202,
"rotY": 270.001923,
"rotZ": 0.016438188,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crank Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266728,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da8001",
"Name": "Card",
"Transform": {
"posX": 4.618041,
"posY": 1.52197039,
"posZ": -30.0565319,
"rotX": 359.921753,
"rotY": 270.001984,
"rotZ": 0.0137173673,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ring Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266729,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "30f84e",
"Name": "Card",
"Transform": {
"posX": 4.58231258,
"posY": 1.55596268,
"posZ": -30.1564045,
"rotX": 359.9205,
"rotY": 270.002319,
"rotZ": 0.01642979,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Box Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266730,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "423f05",
"Name": "Card",
"Transform": {
"posX": 5.01186848,
"posY": 1.56484079,
"posZ": -30.9324341,
"rotX": 359.920227,
"rotY": 270.002563,
"rotZ": 0.0166031569,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Metal Potato Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266731,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b2f04b",
"Name": "Deck",
"Transform": {
"posX": 23.2099361,
"posY": 2.36223,
"posZ": -54.0002022,
"rotX": 359.920135,
"rotY": 269.999176,
"rotZ": 0.0168766547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Hound",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
266724,
266725,
266726,
266727
],
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4a9c25",
"Name": "Card",
"Transform": {
"posX": -0.979901731,
"posY": 1.4877919,
"posZ": -29.4972076,
"rotX": 359.920166,
"rotY": 270.001984,
"rotZ": 0.0166815948,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hound",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266724,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c30772",
"Name": "Card",
"Transform": {
"posX": -0.872342,
"posY": 1.52988982,
"posZ": -29.056366,
"rotX": 359.921356,
"rotY": 270.001984,
"rotZ": 0.0120345168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hound",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266725,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b298e1",
"Name": "Card",
"Transform": {
"posX": -0.860586941,
"posY": 1.5637939,
"posZ": -29.4036522,
"rotX": 359.920563,
"rotY": 270.001984,
"rotZ": 0.01651738,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hound",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266726,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ca595",
"Name": "Card",
"Transform": {
"posX": -1.08659518,
"posY": 1.57375956,
"posZ": -29.12083,
"rotX": 359.919861,
"rotY": 270.002167,
"rotZ": 0.0162611324,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hound",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266727,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "53e18a",
"Name": "Bag",
"Transform": {
"posX": 0.537618756,
"posY": 1.39735532,
"posZ": 5.718765,
"rotX": 359.983154,
"rotY": 0.0005296652,
"rotZ": 359.919678,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Random Seasons (shuffle and pick 1)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.811088,
"g": 0.157559156,
"b": 0.878048837
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2a01b3",
"Name": "Bag",
"Transform": {
"posX": 10.6556406,
"posY": 3.358714,
"posZ": 0.0260953158,
"rotX": 0.031963855,
"rotY": 0.00751528936,
"rotZ": 359.1963,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spring",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.3906577,
"g": 0.8048779,
"b": 0.3183051
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "09c008",
"Name": "Card",
"Transform": {
"posX": 6.85423136,
"posY": 3.56729674,
"posZ": 3.63918638,
"rotX": 359.82132,
"rotY": 269.9975,
"rotZ": 0.769702733,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Moose/Goose",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266639,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c78eea",
"Name": "Deck",
"Transform": {
"posX": 6.133377,
"posY": 3.61926246,
"posZ": 4.082443,
"rotX": 0.477769077,
"rotY": 270.000336,
"rotZ": 180.050827,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spring Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
266630,
266631,
266632,
266633,
266634,
266635,
266636,
266637,
266638
],
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "914d8b",
"Name": "Card",
"Transform": {
"posX": 8.431779,
"posY": 1.48031116,
"posZ": -9.946907,
"rotX": 359.921356,
"rotY": 269.991333,
"rotZ": 0.008914029,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sudden Downpour",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266630,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22c113",
"Name": "Card",
"Transform": {
"posX": 8.665297,
"posY": 1.51616418,
"posZ": -10.21724,
"rotX": 359.907074,
"rotY": 269.991241,
"rotZ": 0.0187330786,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sudden Downpour",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266631,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d908a2",
"Name": "Card",
"Transform": {
"posX": 8.348962,
"posY": 1.55652618,
"posZ": -10.4306116,
"rotX": 359.920074,
"rotY": 269.991241,
"rotZ": 0.0163823925,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sudden Downpour",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266632,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "786894",
"Name": "Card",
"Transform": {
"posX": 9.429749,
"posY": 1.56494713,
"posZ": -9.687392,
"rotX": 359.914124,
"rotY": 269.9927,
"rotZ": 0.01634506,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Raining Frogs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266633,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "93863d",
"Name": "Card",
"Transform": {
"posX": 8.865634,
"posY": 1.57509828,
"posZ": -10.5025206,
"rotX": 359.9203,
"rotY": 269.991272,
"rotZ": 0.0166302063,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Raining Frogs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266634,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e34b40",
"Name": "Card",
"Transform": {
"posX": 8.627762,
"posY": 1.58523476,
"posZ": -9.90776,
"rotX": 359.9206,
"rotY": 269.991272,
"rotZ": 0.0166432,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Raining Frogs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266635,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "651531",
"Name": "Card",
"Transform": {
"posX": 8.36035252,
"posY": 1.59524965,
"posZ": -9.53168,
"rotX": 359.9199,
"rotY": 269.990662,
"rotZ": 0.0161841735,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lightning Strike",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266636,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c76a6e",
"Name": "Card",
"Transform": {
"posX": 8.880692,
"posY": 1.60423684,
"posZ": -9.492916,
"rotX": 359.9202,
"rotY": 269.9912,
"rotZ": 0.01637882,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lightning Strike",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266637,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3ae8b1",
"Name": "Card",
"Transform": {
"posX": 8.897248,
"posY": 1.61370122,
"posZ": -10.0369015,
"rotX": 359.92038,
"rotY": 269.9912,
"rotZ": 0.01642087,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lightning Strike",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266638,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "00da56",
"Name": "Bag",
"Transform": {
"posX": 9.528087,
"posY": 3.36193466,
"posZ": -0.355982423,
"rotX": 359.4792,
"rotY": -0.00240356638,
"rotZ": 0.557221353,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Summer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.229987621,
"b": 0.133333355
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1d0f41",
"Name": "Card",
"Transform": {
"posX": 6.50006,
"posY": 3.56707835,
"posZ": 0.8763475,
"rotX": 0.126501381,
"rotY": 270.001282,
"rotZ": 0.733757,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dragonfly",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266629,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "56e47f",
"Name": "Deck",
"Transform": {
"posX": 6.79473639,
"posY": 3.61875367,
"posZ": 1.68146527,
"rotX": 359.864227,
"rotY": 270.000244,
"rotZ": 179.298035,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Summer Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
266620,
266621,
266624,
266622,
266623,
266625,
266626,
266627,
266628
],
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1871af",
"Name": "Card",
"Transform": {
"posX": 6.98505354,
"posY": 1.48230112,
"posZ": -10.0757914,
"rotX": 359.921265,
"rotY": 269.999237,
"rotZ": 0.009601661,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Killer Bees",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266620,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8f0d1",
"Name": "Card",
"Transform": {
"posX": 7.12423658,
"posY": 2.39090562,
"posZ": -10.18814,
"rotX": 359.938873,
"rotY": 270.2812,
"rotZ": 0.07969102,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Killer Bees",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266621,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a0f21f",
"Name": "Card",
"Transform": {
"posX": 7.1457777,
"posY": 2.4732213,
"posZ": -10.2274923,
"rotX": 359.922058,
"rotY": 270.942749,
"rotZ": 0.09989954,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heatstroke",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266624,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d0f60",
"Name": "Card",
"Transform": {
"posX": 7.20120859,
"posY": 2.41831136,
"posZ": -10.1460333,
"rotX": 359.937958,
"rotY": 269.634521,
"rotZ": 0.0894527,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Killer Bees",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266622,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e42310",
"Name": "Card",
"Transform": {
"posX": 7.15817451,
"posY": 2.44576049,
"posZ": -10.1008234,
"rotX": 359.936066,
"rotY": 268.879578,
"rotZ": 0.09255609,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heatstroke",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266623,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91d996",
"Name": "Card",
"Transform": {
"posX": 7.2167635,
"posY": 2.5006175,
"posZ": -10.14516,
"rotX": 359.919067,
"rotY": 269.700226,
"rotZ": 0.101840369,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heatstroke",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266625,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d0edf9",
"Name": "Card",
"Transform": {
"posX": 7.12603664,
"posY": 2.52841544,
"posZ": -10.1159391,
"rotX": 359.904816,
"rotY": 269.711182,
"rotZ": 0.103486381,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burst Into Flames",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266626,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "302729",
"Name": "Card",
"Transform": {
"posX": 6.226267,
"posY": 1.4764874,
"posZ": -33.70316,
"rotX": 359.920349,
"rotY": 269.999664,
"rotZ": 0.0153713059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burst Into Flames",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266627,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2dc5e",
"Name": "Card",
"Transform": {
"posX": 6.60221148,
"posY": 1.5181011,
"posZ": -33.8578949,
"rotX": 359.9161,
"rotY": 269.999725,
"rotZ": 0.0168933235,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burst Into Flames",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266628,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "c140db",
"Name": "Bag",
"Transform": {
"posX": 9.905847,
"posY": 3.36882234,
"posZ": 0.0729927,
"rotX": 0.178587288,
"rotY": -0.00189190113,
"rotZ": 359.9856,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Autumn",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.929411769,
"g": 0.8084849,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "9c91cc",
"Name": "Card",
"Transform": {
"posX": 6.965287,
"posY": 3.56961966,
"posZ": -1.19223356,
"rotX": 359.8999,
"rotY": 269.990356,
"rotZ": 359.473358,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bearger",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266619,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "04d3f8",
"Name": "Deck",
"Transform": {
"posX": 7.217429,
"posY": 3.61366248,
"posZ": -0.8420958,
"rotX": 359.74295,
"rotY": 270.00116,
"rotZ": 179.254852,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Autumn Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
266610,
266613,
266612,
266611,
266614,
266617,
266615,
266616,
266618
],
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "57a8ca",
"Name": "Card",
"Transform": {
"posX": 7.43900251,
"posY": 1.48124278,
"posZ": -11.8365984,
"rotX": 359.92038,
"rotY": 269.991028,
"rotZ": 0.0157322288,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Catcoon",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266610,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb8e45",
"Name": "Card",
"Transform": {
"posX": 7.53097343,
"posY": 2.43170023,
"posZ": -11.5335188,
"rotX": 359.892242,
"rotY": 270.6342,
"rotZ": 0.06444878,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Poison Birchnut Tree",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266613,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "84b708",
"Name": "Card",
"Transform": {
"posX": 7.52966547,
"posY": 2.4040885,
"posZ": -11.4385538,
"rotX": 359.883148,
"rotY": 269.2834,
"rotZ": 0.0545803048,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Catcoon",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266612,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "16b511",
"Name": "Card",
"Transform": {
"posX": 7.55862141,
"posY": 2.37649846,
"posZ": -11.5246754,
"rotX": 359.881256,
"rotY": 270.42984,
"rotZ": 0.0389517434,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Catcoon",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266611,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "36ab94",
"Name": "Card",
"Transform": {
"posX": 7.69540739,
"posY": 2.45900917,
"posZ": -11.39544,
"rotX": 359.894836,
"rotY": 270.362427,
"rotZ": 0.07441962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Poison Birchnut Tree",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266614,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6fd943",
"Name": "Card",
"Transform": {
"posX": 7.558992,
"posY": 2.54227734,
"posZ": -11.4884834,
"rotX": 359.9158,
"rotY": 270.435883,
"rotZ": 0.12900956,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Birchnutters",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266617,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e01c1b",
"Name": "Card",
"Transform": {
"posX": 7.441458,
"posY": 2.48717785,
"posZ": -11.5729036,
"rotX": 359.903748,
"rotY": 269.887024,
"rotZ": 0.110719532,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Poison Birchnut Tree",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266615,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a250e",
"Name": "Card",
"Transform": {
"posX": 7.556913,
"posY": 2.51459527,
"posZ": -11.4771109,
"rotX": 359.909821,
"rotY": 268.22937,
"rotZ": 0.1205705,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Birchnutters",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266616,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b7ab9e",
"Name": "Card",
"Transform": {
"posX": 7.53390932,
"posY": 2.56981277,
"posZ": -11.504076,
"rotX": 359.918121,
"rotY": 270.7454,
"rotZ": 0.141811952,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Birchnutters",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266618,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "6852cd",
"Name": "Bag",
"Transform": {
"posX": 10.5757341,
"posY": 3.35870886,
"posZ": 0.3005661,
"rotX": 0.3198919,
"rotY": 0.001773015,
"rotZ": 359.249542,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Winter",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.5333333,
"g": 0.7598804,
"b": 0.9686274
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "b285f8",
"Name": "Card",
"Transform": {
"posX": 7.21972847,
"posY": 3.57156944,
"posZ": -3.9421742,
"rotX": 359.6999,
"rotY": 269.996552,
"rotZ": 0.2323293,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deerclops",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266609,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "993c7b",
"Name": "Deck",
"Transform": {
"posX": 7.167783,
"posY": 3.61147761,
"posZ": -5.094892,
"rotX": 359.7867,
"rotY": 269.999146,
"rotZ": 180.7775,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Winter Encounter Set",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 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": [
266601,
266600,
266602,
266605,
266603,
266604,
266606,
266607,
266608
],
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "b42bbd",
"Name": "Card",
"Transform": {
"posX": 6.859688,
"posY": 2.40747833,
"posZ": -10.042758,
"rotX": 359.2605,
"rotY": 269.471222,
"rotZ": 0.08651057,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shortened Daylight",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266601,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ea8fe",
"Name": "Card",
"Transform": {
"posX": 6.818114,
"posY": 2.3807354,
"posZ": -10.1132231,
"rotX": 359.256317,
"rotY": 270.670349,
"rotZ": 0.07178853,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shortened Daylight",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266600,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da5484",
"Name": "Card",
"Transform": {
"posX": 6.824481,
"posY": 2.43530822,
"posZ": -9.937493,
"rotX": 359.264465,
"rotY": 267.992218,
"rotZ": 0.106353678,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shortened Daylight",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266602,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fff41a",
"Name": "Card",
"Transform": {
"posX": 6.82288742,
"posY": 2.51651335,
"posZ": -10.1038961,
"rotX": 359.2784,
"rotY": 270.700623,
"rotZ": 0.0636448339,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pengulls",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266605,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "48113e",
"Name": "Card",
"Transform": {
"posX": 6.87660456,
"posY": 2.46137166,
"posZ": -10.1859226,
"rotX": 359.266418,
"rotY": 270.693542,
"rotZ": 0.0694465041,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pengulls",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266603,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bb3cc8",
"Name": "Card",
"Transform": {
"posX": 6.820116,
"posY": 2.489577,
"posZ": -10.0049152,
"rotX": 359.269,
"rotY": 270.3448,
"rotZ": 0.07527113,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pengulls",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266604,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a7cdb4",
"Name": "Card",
"Transform": {
"posX": 6.87734365,
"posY": 2.54306221,
"posZ": -10.042346,
"rotX": 359.283783,
"rotY": 270.246033,
"rotZ": 0.06794331,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frozen Solid",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266606,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d37c13",
"Name": "Card",
"Transform": {
"posX": 6.86195946,
"posY": 2.5704155,
"posZ": -10.0809212,
"rotX": 359.2844,
"rotY": 269.8772,
"rotZ": 0.0689629,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frozen Solid",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266607,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5907ff",
"Name": "Card",
"Transform": {
"posX": 6.82310963,
"posY": 2.59811115,
"posZ": -10.0459146,
"rotX": 359.288879,
"rotY": 269.981873,
"rotZ": 0.06604649,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frozen Solid",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266608,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503109727/1148B40695E3B949118D09B718E9D5F159CFC939/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 10,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
}
]
},
{
"GUID": "d2bee9",
"Name": "Deck",
"Transform": {
"posX": -3.92763042,
"posY": 1.72512233,
"posZ": 5.75718,
"rotX": 359.919739,
"rotY": 269.999939,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
266701,
266700,
266702,
266703,
266704,
266705,
266706,
266707,
266708,
266709,
266710,
266711,
266712,
266713,
266714,
266715,
266716,
266717,
266718,
266719,
266720,
266721,
266722,
266723
],
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1c8ffa",
"Name": "Card",
"Transform": {
"posX": 6.343839,
"posY": 1.47953427,
"posZ": -22.8300247,
"rotX": 359.920258,
"rotY": 269.9989,
"rotZ": 0.01598181,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Werepig",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266701,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "74174e",
"Name": "Card",
"Transform": {
"posX": 6.406359,
"posY": 1.521633,
"posZ": -22.72364,
"rotX": 359.922729,
"rotY": 269.9998,
"rotZ": 0.0146885058,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Werepig",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266700,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e87a1",
"Name": "Card",
"Transform": {
"posX": 6.51662445,
"posY": 1.55547678,
"posZ": -22.6980267,
"rotX": 359.9205,
"rotY": 270.012634,
"rotZ": 0.0165239535,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Treeguard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266702,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "615f28",
"Name": "Card",
"Transform": {
"posX": 6.813006,
"posY": 1.56454718,
"posZ": -23.371418,
"rotX": 359.920258,
"rotY": 270.003876,
"rotZ": 0.0165921915,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Terrorbeak",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266703,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "75c99d",
"Name": "Card",
"Transform": {
"posX": 6.0404,
"posY": 1.57518518,
"posZ": -23.2742634,
"rotX": 359.920166,
"rotY": 270.0102,
"rotZ": 0.0163898952,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Terrorbeak",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266704,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a5ee49",
"Name": "Card",
"Transform": {
"posX": 6.10047865,
"posY": 1.58491647,
"posZ": -22.5764141,
"rotX": 359.919861,
"rotY": 270.006958,
"rotZ": 0.01643318,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tempting Offer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266705,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba0b7a",
"Name": "Card",
"Transform": {
"posX": 6.122112,
"posY": 1.59430659,
"posZ": -23.4611359,
"rotX": 359.9202,
"rotY": 270.009644,
"rotZ": 0.0161183439,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tempting Offer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266706,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b0746b",
"Name": "Card",
"Transform": {
"posX": 6.34339142,
"posY": 1.60370433,
"posZ": -23.22255,
"rotX": 359.920044,
"rotY": 270.009583,
"rotZ": 0.016530741,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tempting Offer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266707,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "59fa32",
"Name": "Card",
"Transform": {
"posX": 6.428741,
"posY": 1.61339116,
"posZ": -22.89435,
"rotX": 359.9206,
"rotY": 270.009583,
"rotZ": 0.016288586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spoilage",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266708,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e77a2",
"Name": "Card",
"Transform": {
"posX": 6.495265,
"posY": 1.62301791,
"posZ": -22.2114334,
"rotX": 359.920135,
"rotY": 270.0096,
"rotZ": 0.015567217,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spoilage",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266709,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "26ab26",
"Name": "Card",
"Transform": {
"posX": 5.74676752,
"posY": 1.63334143,
"posZ": -23.1558266,
"rotX": 359.920532,
"rotY": 270.0089,
"rotZ": 0.0161858276,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shadow Watcher",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266710,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7eff1f",
"Name": "Card",
"Transform": {
"posX": 6.32148027,
"posY": 1.64245343,
"posZ": -22.558075,
"rotX": 359.919861,
"rotY": 270.009644,
"rotZ": 0.0164843928,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shadow Watcher",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266711,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "29d370",
"Name": "Card",
"Transform": {
"posX": 5.54987144,
"posY": 1.65287948,
"posZ": -22.92345,
"rotX": 359.92157,
"rotY": 270.0079,
"rotZ": 0.0157498289,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Secrets in Shadows",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266712,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "60eed5",
"Name": "Card",
"Transform": {
"posX": 5.888118,
"posY": 1.662102,
"posZ": -22.9922428,
"rotX": 359.920319,
"rotY": 270.009644,
"rotZ": 0.0163666084,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Secrets in Shadows",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266713,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dc225e",
"Name": "Card",
"Transform": {
"posX": 5.92472,
"posY": 1.67179108,
"posZ": -22.7166748,
"rotX": 359.9199,
"rotY": 270.008636,
"rotZ": 0.0165459923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Secrets in Shadows",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266714,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ea4a7",
"Name": "Card",
"Transform": {
"posX": 6.52270842,
"posY": 1.66551161,
"posZ": -23.0581512,
"rotX": 359.9361,
"rotY": 270.000031,
"rotZ": 0.0134284385,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Night Hand",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266715,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9f6f50",
"Name": "Card",
"Transform": {
"posX": 6.511953,
"posY": 1.690353,
"posZ": -22.3673611,
"rotX": 359.920227,
"rotY": 270.010834,
"rotZ": 0.0163443368,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Night Hand",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266716,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "61b6c8",
"Name": "Card",
"Transform": {
"posX": 6.615206,
"posY": 1.69988477,
"posZ": -22.6343975,
"rotX": 359.920319,
"rotY": 270.008026,
"rotZ": 0.0166573934,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lureplant",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266717,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fd4608",
"Name": "Card",
"Transform": {
"posX": 6.402868,
"posY": 1.70977807,
"posZ": -22.3002625,
"rotX": 359.920227,
"rotY": 270.01123,
"rotZ": 0.01603971,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lureplant",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266718,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "95f305",
"Name": "Card",
"Transform": {
"posX": 6.603143,
"posY": 1.7190727,
"posZ": -22.6146679,
"rotX": 359.9203,
"rotY": 270.009521,
"rotZ": 0.0166566353,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lureplant",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266719,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed74c4",
"Name": "Card",
"Transform": {
"posX": 6.303013,
"posY": 1.7290777,
"posZ": -22.6500683,
"rotX": 359.9199,
"rotY": 270.012054,
"rotZ": 0.0166157112,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Falling Apart",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266720,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df5899",
"Name": "Card",
"Transform": {
"posX": 5.925852,
"posY": 1.739076,
"posZ": -22.82224,
"rotX": 359.919861,
"rotY": 270.00946,
"rotZ": 0.0166400336,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Falling Apart",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266721,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2286b8",
"Name": "Card",
"Transform": {
"posX": -11.7339773,
"posY": 1.50280607,
"posZ": -29.3860874,
"rotX": 359.920258,
"rotY": 270.008575,
"rotZ": 0.0159571581,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crawling Horror",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266722,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb7199",
"Name": "Card",
"Transform": {
"posX": -11.3873014,
"posY": 1.54452181,
"posZ": -29.3776455,
"rotX": 359.921875,
"rotY": 269.999634,
"rotZ": 0.01341966,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crawling Horror",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266723,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "5c65b6",
"Name": "Card",
"Transform": {
"posX": 0.4163613,
"posY": 1.59503365,
"posZ": 1.8734622,
"rotX": 359.919739,
"rotY": 270.00705,
"rotZ": 0.0168272816,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Starvation",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266732,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503112385/3C197010356C7CE31A5944A74679B12E18EDD34C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 9,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc1d42",
"Name": "Deck",
"Transform": {
"posX": -2.72484255,
"posY": 1.62076068,
"posZ": 0.3734305,
"rotX": 0.0168328527,
"rotY": 180.001816,
"rotZ": 0.08025734,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
266403,
266404,
266405
],
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096085/D0CEC8063BCD7731C8FB5F04A04D765E7368E390/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096264/B92F3A118397B3611201113173707313417BC7BC/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "a5d440",
"Name": "Card",
"Transform": {
"posX": 3.19478536,
"posY": 1.48234975,
"posZ": -28.1974163,
"rotX": 0.01695695,
"rotY": 180.0016,
"rotZ": 0.07936387,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 3 - Mincemeat",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266403,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096085/D0CEC8063BCD7731C8FB5F04A04D765E7368E390/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096264/B92F3A118397B3611201113173707313417BC7BC/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d90019",
"Name": "Card",
"Transform": {
"posX": 2.95578,
"posY": 1.52468932,
"posZ": -28.2051811,
"rotX": 0.0149071468,
"rotY": 180.002213,
"rotZ": 0.0769071952,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 2 - Out of the Frying Pan",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266404,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096085/D0CEC8063BCD7731C8FB5F04A04D765E7368E390/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096264/B92F3A118397B3611201113173707313417BC7BC/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f5ee6",
"Name": "Card",
"Transform": {
"posX": -2.72471,
"posY": 1.66384959,
"posZ": 0.373335838,
"rotX": 0.0193325561,
"rotY": 179.99408,
"rotZ": 0.07743048,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1 - A Watched Pot",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266405,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096085/D0CEC8063BCD7731C8FB5F04A04D765E7368E390/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096264/B92F3A118397B3611201113173707313417BC7BC/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "d72f74",
"Name": "Deck",
"Transform": {
"posX": -2.68869758,
"posY": 1.61911678,
"posZ": -5.048504,
"rotX": 0.01683418,
"rotY": 180.0008,
"rotZ": 0.08025696,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
266400,
266401,
266402
],
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096085/D0CEC8063BCD7731C8FB5F04A04D765E7368E390/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096264/B92F3A118397B3611201113173707313417BC7BC/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "00b729",
"Name": "Card",
"Transform": {
"posX": 3.18187141,
"posY": 1.48128772,
"posZ": -31.79863,
"rotX": 0.017134076,
"rotY": 180.0009,
"rotZ": 0.07809513,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 3 - Change of Menu",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266400,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096085/D0CEC8063BCD7731C8FB5F04A04D765E7368E390/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096264/B92F3A118397B3611201113173707313417BC7BC/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "30c244",
"Name": "Card",
"Transform": {
"posX": 3.2495513,
"posY": 1.523159,
"posZ": -32.06094,
"rotX": 0.0219943263,
"rotY": 180.000946,
"rotZ": 0.0785630047,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2 - Breadcrumbs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266401,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096085/D0CEC8063BCD7731C8FB5F04A04D765E7368E390/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096264/B92F3A118397B3611201113173707313417BC7BC/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "636d08",
"Name": "Card",
"Transform": {
"posX": -2.688533,
"posY": 1.66211772,
"posZ": -5.04854,
"rotX": 0.0194312856,
"rotY": 180.0003,
"rotZ": 0.07925333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1 - Lean Times",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 266402,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096085/D0CEC8063BCD7731C8FB5F04A04D765E7368E390/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503096264/B92F3A118397B3611201113173707313417BC7BC/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e14959",
"Name": "Card",
"Transform": {
"posX": -3.95599365,
"posY": 1.59753942,
"posZ": -10.4411573,
"rotX": 359.919739,
"rotY": 269.99585,
"rotZ": 0.0168430023,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Don't Starve",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587819,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "75ab30",
"Name": "Custom_Model",
"Transform": {
"posX": -0.20792298,
"posY": 1.62692308,
"posZ": -16.172411,
"rotX": 359.919739,
"rotY": 269.9964,
"rotZ": 0.0168467462,
"scaleX": 0.5000004,
"scaleY": 0.5000004,
"scaleZ": 0.5000004
},
"Nickname": "Don't Starve Custom Data Helper",
"Description": "Include this in custom content for clue spawning!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"Convex": true,
"MaterialIndex": 2,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 0.7222887,
"g": 0.507659256,
"b": 0.339915335
},
"SpecularIntensity": 0.4,
"SpecularSharpness": 7.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for <LOCATION_NAME>_<GUID> and if\r\nwe find nothing we look for <LOCATION_NAME>\r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"San Francisco\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"\tArkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"\tLondon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rome\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Istanbul\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tokyo_123abc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tokyo_456efg\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Tokyo\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Shanghai_123\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"front\"},\r\n \"Sydney\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_4c06ff\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_961324\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_5968dd\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_2520d1\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_693f1f\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_f4ab8e\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_c198f6\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_e8db0f\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_de7ac9\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_31a3ac\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_0c382f\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_ed0e35\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_8914ce\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_0ac2ee\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_194579\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_ee8103\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_aac286\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unexplored Biome_4a6b02\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\n \"Tool Belt (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Tool Belt (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Yithian Rifle\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"xxx\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Flawed Hypotheses\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 6\r\n },\r\n \"On Tentacles\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Wolfgang's Appetite\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Willow's Lighter\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n }\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\r\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\r\n local dataHelper = getObjectFromGUID('708279')\r\n dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "26c474",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -9.075352,
"posY": 1.596909,
"posZ": -2.64759946,
"rotX": 359.931824,
"rotY": 314.92157,
"rotZ": 359.956635,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Hard/Expert Chaos Bag",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "function filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "537f6b",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.63547,
"posY": 16.4130878,
"posZ": -3.03165984,
"rotX": 355.645782,
"rotY": 279.157135,
"rotZ": 241.7439,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f58ddb",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.622519,
"posY": 16.9588,
"posZ": -3.18455482,
"rotX": 357.1218,
"rotY": 279.581543,
"rotZ": 48.74089,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/yfs8gHq.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3c32fb",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.687989,
"posY": 3.20253372,
"posZ": -2.682397,
"rotX": 356.7756,
"rotY": 263.4035,
"rotZ": 77.4540558,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa67d0",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.000547,
"posY": 5.99288464,
"posZ": -3.51439214,
"rotX": 320.4572,
"rotY": 285.234924,
"rotZ": 246.264221,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Cultist",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/VzhJJaH.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9d03f9",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.067313,
"posY": 3.061002,
"posZ": -3.283303,
"rotX": 342.446747,
"rotY": 284.6056,
"rotZ": 52.9249458,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b6571a",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.1600618,
"posY": 3.21347618,
"posZ": -3.34130883,
"rotX": 335.4743,
"rotY": 282.215576,
"rotZ": 271.4628,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "480dfe",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.63263,
"posY": 15.1418581,
"posZ": -3.01734638,
"rotX": 359.492523,
"rotY": 271.583252,
"rotZ": 359.056366,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Tablet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/1plY463.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90a15d",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.558646,
"posY": 3.20144486,
"posZ": -3.028092,
"rotX": 0.5480423,
"rotY": 276.860046,
"rotZ": 242.8833,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cd04ca",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.2259684,
"posY": 15.6579685,
"posZ": -2.84769988,
"rotX": 21.9233532,
"rotY": 245.540817,
"rotZ": 276.9209,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b4d22b",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.43585,
"posY": 3.20789671,
"posZ": -3.73818874,
"rotX": 74.3346,
"rotY": 220.782043,
"rotZ": 306.399567,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/ttnspKt.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cca9b1",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.3709259,
"posY": 3.114947,
"posZ": -3.25586224,
"rotX": 51.12445,
"rotY": 214.458618,
"rotZ": 203.52832,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-5",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/3Ym1IeG.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ca3b2",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.737143,
"posY": 2.98798418,
"posZ": -3.760148,
"rotX": 14.0896387,
"rotY": 274.9725,
"rotZ": 53.2288933,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-7",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/4WRD42n.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d64cd6",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.1467571,
"posY": 12.7938557,
"posZ": -3.100253,
"rotX": 0.9201788,
"rotY": 269.801636,
"rotZ": 61.0354233,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/yfs8gHq.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec3720",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.998212,
"posY": 6.341317,
"posZ": -3.267956,
"rotX": 326.88443,
"rotY": 294.8256,
"rotZ": 240.540451,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "66c9c0",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.1996031,
"posY": 2.86559534,
"posZ": -2.92753839,
"rotX": 17.8940563,
"rotY": 204.654648,
"rotZ": 200.250839,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03ceb7",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.7011385,
"posY": 3.19904447,
"posZ": -2.59831214,
"rotX": 0.5026879,
"rotY": 293.4131,
"rotZ": 106.638077,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "2f03c9",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -8.996373,
"posY": 1.59836364,
"posZ": 2.67791677,
"rotX": 359.931824,
"rotY": 314.849731,
"rotZ": 359.956726,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Easy/Standard Chaos Bag",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "function filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "6cda68",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.310236,
"posY": 3.23414683,
"posZ": 3.29595017,
"rotX": 2.77940273,
"rotY": 263.70343,
"rotZ": 270.073853,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ddd462",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.503235,
"posY": 3.084421,
"posZ": 3.200418,
"rotX": 1.50791442,
"rotY": 256.2011,
"rotZ": 226.980759,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4c0d07",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.598033,
"posY": 2.69913554,
"posZ": 3.10026622,
"rotX": 355.40033,
"rotY": 283.119751,
"rotZ": 189.139191,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Tablet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/1plY463.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b297ae",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.776676,
"posY": 3.159798,
"posZ": 3.19906282,
"rotX": 347.297333,
"rotY": 268.2724,
"rotZ": 294.443542,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/bfTg2hb.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f15bd1",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.4255867,
"posY": 11.6860065,
"posZ": 3.37327147,
"rotX": 7.670329,
"rotY": 275.556946,
"rotZ": 108.158157,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/yfs8gHq.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "233aa2",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.333291,
"posY": 2.63224053,
"posZ": 3.05624914,
"rotX": 345.8054,
"rotY": 273.84082,
"rotZ": 354.521362,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d2196",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.93968,
"posY": 3.22083,
"posZ": 2.92098713,
"rotX": 325.89,
"rotY": 254.36319,
"rotZ": 114.277184,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Cultist",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/VzhJJaH.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fd2016",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.394203,
"posY": 2.4283576,
"posZ": 2.97120953,
"rotX": 0.05165466,
"rotY": 266.431671,
"rotZ": 359.8374,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/yfs8gHq.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c2b8a0",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.540667,
"posY": 2.828401,
"posZ": 3.06747913,
"rotX": 13.4889984,
"rotY": 301.1782,
"rotZ": 164.368332,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed78de",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.82753372,
"posY": 9.221996,
"posZ": 3.64231873,
"rotX": 28.2165852,
"rotY": 284.138428,
"rotZ": 88.19585,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "517067",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.89041471,
"posY": 2.7868464,
"posZ": 3.11230659,
"rotX": 355.02417,
"rotY": 315.162781,
"rotZ": 26.0623817,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-5",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/3Ym1IeG.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ce4ab",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.865717,
"posY": 3.06360149,
"posZ": 3.30456424,
"rotX": 23.85857,
"rotY": 273.768341,
"rotZ": 309.604736,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ff40c",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.551052,
"posY": 2.99526715,
"posZ": 3.67649031,
"rotX": 38.7420425,
"rotY": 294.7215,
"rotZ": 331.9251,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "+1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/uIx8jbY.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "611dee",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.719267,
"posY": 3.23755932,
"posZ": 3.636354,
"rotX": 10.8107615,
"rotY": 252.352173,
"rotZ": 276.125519,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/w3XbrCC.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e04757",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.773253,
"posY": 6.068969,
"posZ": 3.80682969,
"rotX": 344.292816,
"rotY": 229.721451,
"rotZ": 113.71669,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bcb72f",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.07323551,
"posY": 3.21328139,
"posZ": 2.5431025,
"rotX": 39.46473,
"rotY": 241.619934,
"rotZ": 268.232117,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/ttnspKt.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "41b0cb",
"Name": "Notecard",
"Transform": {
"posX": -9.098085,
"posY": 1.66746187,
"posZ": 11.2615747,
"rotX": 0.07917475,
"rotY": 90.00849,
"rotZ": 359.983,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Setting Up the Constant",
"Description": "1. Shuffle each of the 9 pairs and remove 1 card from each pair from the game\n2. Shuffle the 9 remaining locations together\n3. One at a time, follow the instructions on the back of each card until each is in play\n\nNote: You may place cards in any valid spot that follows those instructions.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc74be",
"Name": "Deck",
"Transform": {
"posX": -13.2565718,
"posY": 1.6349777,
"posZ": 15.2381468,
"rotX": 359.9201,
"rotY": 270.004883,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": [
587817,
587816
],
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4c06ff",
"Name": "Card",
"Transform": {
"posX": 16.7405758,
"posY": 1.50651646,
"posZ": -25.19969,
"rotX": 359.919769,
"rotY": 269.995361,
"rotZ": 180.0202,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587817,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "961324",
"Name": "Card",
"Transform": {
"posX": 16.81026,
"posY": 1.4641757,
"posZ": -25.4516544,
"rotX": 359.920227,
"rotY": 270.004883,
"rotZ": 180.017441,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587816,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c7debb",
"Name": "Deck",
"Transform": {
"posX": -17.12011,
"posY": 1.64035094,
"posZ": 15.1900139,
"rotX": 359.9201,
"rotY": 270.000458,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
587811,
587810
],
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c198f6",
"Name": "Card",
"Transform": {
"posX": 5.492229,
"posY": 1.52224207,
"posZ": -24.9744263,
"rotX": 359.919861,
"rotY": 269.998352,
"rotZ": 180.020569,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587811,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8db0f",
"Name": "Card",
"Transform": {
"posX": 5.56681252,
"posY": 1.479865,
"posZ": -25.3770542,
"rotX": 359.9203,
"rotY": 270.000427,
"rotZ": 180.017929,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587810,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "90c2c5",
"Name": "Deck",
"Transform": {
"posX": -21.07191,
"posY": 1.64589512,
"posZ": 15.3044739,
"rotX": 359.9201,
"rotY": 270.0008,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
587805,
587804
],
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8914ce",
"Name": "Card",
"Transform": {
"posX": -5.81026,
"posY": 1.537958,
"posZ": -25.1918964,
"rotX": 359.919769,
"rotY": 270.000732,
"rotZ": 180.0202,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587805,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ac2ee",
"Name": "Card",
"Transform": {
"posX": -5.744008,
"posY": 1.49562454,
"posZ": -25.4329948,
"rotX": 359.9202,
"rotY": 270.000763,
"rotZ": 180.017426,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587804,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "03c0bb",
"Name": "Deck",
"Transform": {
"posX": -13.2816849,
"posY": 1.63390446,
"posZ": 11.4672108,
"rotX": 359.9201,
"rotY": 270.0011,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
587815,
587814
],
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5968dd",
"Name": "Card",
"Transform": {
"posX": 12.5835714,
"posY": 1.51206875,
"posZ": -25.65449,
"rotX": 359.919037,
"rotY": 269.999847,
"rotZ": 180.01947,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587815,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2520d1",
"Name": "Card",
"Transform": {
"posX": 12.9667091,
"posY": 1.4695164,
"posZ": -25.4886341,
"rotX": 359.9203,
"rotY": 270.001,
"rotZ": 180.0179,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587814,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3fc76d",
"Name": "Deck",
"Transform": {
"posX": -17.12006,
"posY": 1.63925469,
"posZ": 11.4600134,
"rotX": 359.9201,
"rotY": 270.003967,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": [
587809,
587808
],
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "de7ac9",
"Name": "Card",
"Transform": {
"posX": 1.66742778,
"posY": 1.52183652,
"posZ": -25.2082253,
"rotX": 359.926941,
"rotY": 270.0027,
"rotZ": 180.026276,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587809,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "31a3ac",
"Name": "Card",
"Transform": {
"posX": 1.54518,
"posY": 1.48548853,
"posZ": -25.2696667,
"rotX": 359.920441,
"rotY": 270.003967,
"rotZ": 180.0189,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587808,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "101cc5",
"Name": "Deck",
"Transform": {
"posX": -20.96251,
"posY": 1.64460945,
"posZ": 11.4490423,
"rotX": 359.9201,
"rotY": 270.0013,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
587803,
587802
],
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "194579",
"Name": "Card",
"Transform": {
"posX": -9.367064,
"posY": 1.542922,
"posZ": -25.0945625,
"rotX": 359.920441,
"rotY": 270.118164,
"rotZ": 180.020081,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587803,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ee8103",
"Name": "Card",
"Transform": {
"posX": -9.148926,
"posY": 1.50041342,
"posZ": -25.28798,
"rotX": 359.920227,
"rotY": 270.001343,
"rotZ": 180.017471,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587802,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "2b2b06",
"Name": "Deck",
"Transform": {
"posX": -13.2675562,
"posY": 1.632756,
"posZ": 7.626684,
"rotX": 359.9201,
"rotY": 269.998169,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
587813,
587812
],
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "693f1f",
"Name": "Card",
"Transform": {
"posX": 9.097379,
"posY": 1.51710987,
"posZ": -25.3017254,
"rotX": 359.9227,
"rotY": 270.000916,
"rotZ": 180.0189,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587813,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4ab8e",
"Name": "Card",
"Transform": {
"posX": 9.079818,
"posY": 1.47489476,
"posZ": -25.6034184,
"rotX": 359.920349,
"rotY": 269.9983,
"rotZ": 180.018326,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587812,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "5bdd04",
"Name": "Deck",
"Transform": {
"posX": -17.1200714,
"posY": 1.63811147,
"posZ": 7.570012,
"rotX": 359.9201,
"rotY": 270.000549,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
587807,
587806
],
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0c382f",
"Name": "Card",
"Transform": {
"posX": -1.82110357,
"posY": 1.53249514,
"posZ": -24.86933,
"rotX": 359.9216,
"rotY": 270.004272,
"rotZ": 180.018387,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587807,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed0e35",
"Name": "Card",
"Transform": {
"posX": -2.08765316,
"posY": 1.49055946,
"posZ": -25.2758083,
"rotX": 359.920349,
"rotY": 270.000519,
"rotZ": 180.018356,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587806,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "51f503",
"Name": "Deck",
"Transform": {
"posX": -20.9582825,
"posY": 1.64345729,
"posZ": 7.54865837,
"rotX": 359.9201,
"rotY": 269.999664,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
587801,
587800
],
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "aac286",
"Name": "Card",
"Transform": {
"posX": -13.4016294,
"posY": 1.54861045,
"posZ": -24.8543854,
"rotX": 359.922882,
"rotY": 270.011536,
"rotZ": 180.01947,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587801,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a6b02",
"Name": "Card",
"Transform": {
"posX": -13.4104395,
"posY": 1.50641227,
"posZ": -25.0578442,
"rotX": 359.920319,
"rotY": 269.999664,
"rotZ": 180.018127,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexplored Biome",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587800,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f69eff",
"Name": "Card",
"Transform": {
"posX": -30.2242584,
"posY": 1.6371969,
"posZ": -0.0299998187,
"rotX": 359.9201,
"rotY": 269.999817,
"rotZ": 0.0168398973,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Makeshift Base",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 587818,
"SidewaysCard": false,
"CustomDeck": {
"5878": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503328820/2A0C727C7C3686807F998C30D3354959FFBC0BC1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503329259/B60DEC12B5612C51342500168D7DA2E473BBA339/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
}