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

2644 lines
96 KiB
JSON

{
"GUID": "2e69d0",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 0.2698359,
"posY": 1.48960686,
"posZ": 28.776968,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168760344,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Don't Starve Investigators",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/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",
"LuaScriptState": "{\"ml\":{\"049651\":{\"lock\":false,\"pos\":{\"x\":-39.9984016418457,\"y\":1.30796504020691,\"z\":-57.847900390625},\"rot\":{\"x\":0.0208088103681803,\"y\":269.999420166016,\"z\":0.0167709793895483}},\"05534d\":{\"lock\":false,\"pos\":{\"x\":-40.433277130127,\"y\":1.30174255371094,\"z\":-78.5659561157227},\"rot\":{\"x\":0.0208085998892784,\"y\":270.000030517578,\"z\":0.0167712327092886}},\"0b4057\":{\"lock\":false,\"pos\":{\"x\":-54.2104759216309,\"y\":1.29435074329376,\"z\":-86.7248611450195},\"rot\":{\"x\":0.0208057351410389,\"y\":270.009887695313,\"z\":0.0167745146900415}},\"0de265\":{\"lock\":false,\"pos\":{\"x\":-50.5162010192871,\"y\":1.30271863937378,\"z\":-62.7216987609863},\"rot\":{\"x\":0.0208138264715672,\"y\":269.981567382813,\"z\":0.0167644713073969}},\"10aa14\":{\"lock\":false,\"pos\":{\"x\":-40.0200996398926,\"y\":1.3072521686554,\"z\":-60.2564010620117},\"rot\":{\"x\":0.0208086967468262,\"y\":269.999725341797,\"z\":0.0167712494730949}},\"144811\":{\"lock\":false,\"pos\":{\"x\":-50.831672668457,\"y\":1.29631996154785,\"z\":-84.1897583007813},\"rot\":{\"x\":0.0208147037774324,\"y\":269.978698730469,\"z\":0.0167634543031454}},\"16e931\":{\"lock\":false,\"pos\":{\"x\":-54.2816009521484,\"y\":1.32870221138,\"z\":-60.0937995910645},\"rot\":{\"x\":0.0208068005740643,\"y\":270.006652832031,\"z\":0.0167733412235975}},\"181416\":{\"lock\":false,\"pos\":{\"x\":-47.2076797485352,\"y\":1.29929566383362,\"z\":-78.5202560424805},\"rot\":{\"x\":0.0208087675273418,\"y\":269.999847412109,\"z\":0.0167711023241282}},\"208789\":{\"lock\":false,\"pos\":{\"x\":-46.9576988220215,\"y\":1.30474603176117,\"z\":-60.2104988098145},\"rot\":{\"x\":0.0208103526383638,\"y\":269.993927001953,\"z\":0.0167688690125942}},\"23d08a\":{\"lock\":false,\"pos\":{\"x\":-43.5625,\"y\":1.30455183982849,\"z\":-65.0863037109375},\"rot\":{\"x\":0.0208085887134075,\"y\":270.000183105469,\"z\":0.0167711470276117}},\"2ab220\":{\"lock\":false,\"pos\":{\"x\":-54.1502075195313,\"y\":1.29681360721588,\"z\":-78.3857879638672},\"rot\":{\"x\":0.0208087991923094,\"y\":270.000122070313,\"z\":0.0167712289839983}},\"2e6779\":{\"lock\":false,\"pos\":{\"x\":-40.3589744567871,\"y\":1.29947459697723,\"z\":-86.4064559936523},\"rot\":{\"x\":0.0208109170198441,\"y\":269.992004394531,\"z\":0.0167681444436312}},\"374e9c\":{\"lock\":false,\"pos\":{\"x\":-50.3554992675781,\"y\":1.30513906478882,\"z\":-54.6520004272461},\"rot\":{\"x\":0.0208085868507624,\"y\":269.999969482422,\"z\":0.0167713407427073}},\"3b7f5e\":{\"lock\":false,\"pos\":{\"x\":-46.8041000366211,\"y\":1.30546891689301,\"z\":-57.9314002990723},\"rot\":{\"x\":0.0208088327199221,\"y\":269.999969482422,\"z\":0.0167714394629002}},\"415ff5\":{\"lock\":false,\"pos\":{\"x\":-54.3089752197266,\"y\":1.31680154800415,\"z\":-84.2695617675781},\"rot\":{\"x\":0.0208021737635136,\"y\":270.023040771484,\"z\":0.0167790465056896}},\"4506c2\":{\"lock\":false,\"pos\":{\"x\":-53.8877983093262,\"y\":1.30392014980316,\"z\":-54.4329986572266},\"rot\":{\"x\":0.0208087544888258,\"y\":269.999969482422,\"z\":0.0167711414396763}},\"4eef97\":{\"lock\":false,\"pos\":{\"x\":-46.9905014038086,\"y\":1.30403566360474,\"z\":-62.5960998535156},\"rot\":{\"x\":0.0208025723695755,\"y\":270.020385742188,\"z\":0.016778577119112}},\"5244b7\":{\"lock\":false,\"pos\":{\"x\":-47.1529731750488,\"y\":1.29834735393524,\"z\":-81.8277587890625},\"rot\":{\"x\":0.0208089258521795,\"y\":270.000457763672,\"z\":0.0167709905654192}},\"6006fa\":{\"lock\":false,\"pos\":{\"x\":-54.1425323486328,\"y\":1.29582250118256,\"z\":-81.781364440918},\"rot\":{\"x\":0.0208027269691229,\"y\":270.020263671875,\"z\":0.0167777054011822}},\"6187b2\":{\"lock\":false,\"pos\":{\"x\":-47.2170753479004,\"y\":1.29763412475586,\"z\":-84.1847610473633},\"rot\":{\"x\":0.0208086259663105,\"y\":270.000274658203,\"z\":0.0167711470276117}},\"682335\":{\"lock\":false,\"pos\":{\"x\":-54.2879981994629,\"y\":1.30139410495758,\"z\":-62.5666007995605},\"rot\":{\"x\":0.0208084508776665,\"y\":270.000030517578,\"z\":0.0167711470276117}},\"6f5590\":{\"lock\":false,\"pos\":{\"x\":-43.7762794494629,\"y\":1.30053281784058,\"z\":-78.5510559082031},\"rot\":{\"x\":0.0208086557686329,\"y\":270,\"z\":0.0167711842805147}},\"70de23\":{\"lock\":false,\"pos\":{\"x\":-50.7880744934082,\"y\":1.29562640190125,\"z\":-86.6133575439453},\"rot\":{\"x\":0.0208112765103579,\"y\":269.990905761719,\"z\":0.0167677998542786}},\"8d7ecb\":{\"lock\":false,\"pos\":{\"x\":-47.2175750732422,\"y\":1.29692459106445,\"z\":-86.6082611083984},\"rot\":{\"x\":0.0208085309714079,\"y\":270.000244140625,\"z\":0.0167712103575468}},\"8e009f\":{\"lock\":false,\"pos\":{\"x\":-43.7559013366699,\"y\":1.3065721988678,\"z\":-57.9441986083984},\"rot\":{\"x\":0.0208087880164385,\"y\":269.999633789063,\"z\":0.0167710371315479}},\"93503f\":{\"lock\":false,\"pos\":{\"x\":-50.5890769958496,\"y\":1.29805994033813,\"z\":-78.546760559082},\"rot\":{\"x\":0.0208088085055351,\"y\":269.999938964844,\"z\":0.0167711973190308}},\"a067d0\":{\"lock\":false,\"pos\":{\"x\":-40.1133995056152,\"y\":1.30650424957275,\"z\":-62.6950988769531},\"rot\":{\"x\":0.0208086110651493,\"y\":269.999755859375,\"z\":0.0167712140828371}},\"a96330\":{\"lock\":false,\"pos\":{\"x\":-50.5937004089355,\"y\":1.30409467220306,\"z\":-57.9240989685059},\"rot\":{\"x\":0.0208087433129549,\"y\":270.000122070313,\"z\":0.0167710352689028}},\"aea08f\":{\"lock\":false,\"pos\":{\"x\":-50.5124015808105,\"y\":1.30345153808594,\"z\":-60.2220993041992},\"rot\":{\"x\":0.0208103451877832,\"y\":269.993713378906,\"z\":0.01676887832582}},\"b54d99\":{\"lock\":false,\"pos\":{\"x\":-43.7377738952637,\"y\":1.29892361164093,\"z\":-84.0963592529297},\"rot\":{\"x\":0.0208086259663105,\"y\":270.000061035156,\"z\":0.0167712867259979}},\"b679ff\":{\"lock\":false,\"pos\":{\"x\":-50.6292724609375,\"y\":1.29708194732666,\"z\":-81.8374557495117},\"rot\":{\"x\":0.02080905623734,\"y\":270.000183105469,\"z\":0.0167706366628408}},\"ba6a4f\":{\"lock\":false,\"pos\":{\"x\":-43.7175750732422,\"y\":1.29820847511292,\"z\":-86.5645599365234},\"rot\":{\"x\":0.0208099484443665,\"y\":269.995758056641,\"z\":0.0167698338627815}},\"c91bbc\":{\"lock\":false,\"pos\":{\"x\":-39.9734992980957,\"y\":1.30901253223419,\"z\":-54.2999000549316},\"rot\":{\"x\":0.0208084303885698,\"y\":270.000366210938,\"z\":0.016771299764514}},\"c96866\":{\"lock\":false,\"pos\":{\"x\":-43.6356010437012,\"y\":1.30764770507813,\"z\":-54.418701171875},\"rot\":{\"x\":0.0208086762577295,\"y\":270,\"z\":0.0167712662369013}},\"c972bd\":{\"lock\":false,\"pos\":{\"x\":-53.9467010498047,\"y\":1.30288803577423,\"z\":-57.8862991333008},\"rot\":{\"x\":0.020808694884181,\"y\":270.000030517578,\"z\":0.0167707893997431}},\"d4879a\":{\"lock\":false,\"pos\":{\"x\":-40.2654724121094,\"y\":1.30021071434021,\"z\":-84.0074615478516},\"rot\":{\"x\":0.0208088830113411,\"y\":269.998901367188,\"z\":0.0167706571519375}},\"dab2b7\":{\"lock\":false,\"pos\":{\"x\":-43.6455993652344,\"y\":1.30521702766418,\"z\":-62.7103004455566},\"rot\":{\"x\":0.0208085291087627,\"y\":270,\"z\":0.0167709551751614}},\"dd39cd\":{\"lock\":false,\"pos\":{\"x\":-43.7768745422363,\"y\":1.29958915710449,\"z\":-81.7739562988281},\"rot\":{\"x\":0.0208089090883732,\"y\":270.000183105469,\"z\":0.0167705938220024}},\"dfc083\":{\"lock\":false,\"pos\":{\"x\":-43.4954986572266,\"y\":1.30599534511566,\"z\":-60.2380981445313},\"rot\":{\"x\":0.0208085048943758,\"y\":270,\"z\":0.0167709179222584}},\"e7003e\":{\"lock\":false,\"pos\":{\"x\":-40.5401725769043,\"y\":1.30076205730438,\"z\":-81.7831573486328},\"rot\":{\"x\":0.020809093490243,\"y\":270.000213623047,\"z\":0.0167709477245808}},\"ea2ee7\":{\"lock\":false,\"pos\":{\"x\":-46.9766998291016,\"y\":1.30641329288483,\"z\":-54.4903984069824},\"rot\":{\"x\":0.020808657631278,\"y\":270,\"z\":0.0167710781097412}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "05534d",
"Name": "CardCustom",
"Transform": {
"posX": -40.4332771,
"posY": 1.30174255,
"posZ": -78.5659561,
"rotX": 0.0208086,
"rotY": 270.000031,
"rotZ": 0.0167712327,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wickerbottom",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267400,
"SidewaysCard": false,
"CustomDeck": {
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898283863/C24259806095AAF6A608CB3D10AB476B181C3CF0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898284127/E9377A23CA2F9F82E607AD2B9F4E9173A0351A18/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e7003e",
"Name": "CardCustom",
"Transform": {
"posX": -40.5401726,
"posY": 1.300762,
"posZ": -81.78316,
"rotX": 0.0208090935,
"rotY": 270.0002,
"rotZ": 0.0167709477,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wickerbottom",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267500,
"SidewaysCard": false,
"CustomDeck": {
"2675": {
"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": "d4879a",
"Name": "CardCustom",
"Transform": {
"posX": -40.2654724,
"posY": 1.30021071,
"posZ": -84.00746,
"rotX": 0.020808883,
"rotY": 269.9989,
"rotZ": 0.0167706572,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On Tentacles",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267600,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898287778/0316F937A600B125619A1602745C83DB01C6F499/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2e6779",
"Name": "CardCustom",
"Transform": {
"posX": -40.3589745,
"posY": 1.2994746,
"posZ": -86.406456,
"rotX": 0.020810917,
"rotY": 269.992,
"rotZ": 0.0167681444,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insomnia",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267700,
"SidewaysCard": false,
"CustomDeck": {
"2677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898289777/5B17223155A341B5A5A8DD73EE0410F87AC7265E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba6a4f",
"Name": "CardCustom",
"Transform": {
"posX": -43.7175751,
"posY": 1.29820848,
"posZ": -86.56456,
"rotX": 0.0208099484,
"rotY": 269.995758,
"rotZ": 0.0167698339,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Valhalla Awaits",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272400,
"SidewaysCard": false,
"CustomDeck": {
"2724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899467014/F6E764B2EEE88481C72B6F05FDE9F2B764CC6231/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b54d99",
"Name": "CardCustom",
"Transform": {
"posX": -43.7377739,
"posY": 1.29892361,
"posZ": -84.09636,
"rotX": 0.020808626,
"rotY": 270.000061,
"rotZ": 0.0167712867,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Battle Spear",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272300,
"SidewaysCard": false,
"CustomDeck": {
"2723": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899465943/F483AC29A36D9EF09EE947BC0A4BB4A0299354B4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd39cd",
"Name": "CardCustom",
"Transform": {
"posX": -43.7768745,
"posY": 1.29958916,
"posZ": -81.77396,
"rotX": 0.02080891,
"rotY": 270.000183,
"rotZ": 0.0167705938,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wigfrid",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268400,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"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": "6f5590",
"Name": "CardCustom",
"Transform": {
"posX": -43.77628,
"posY": 1.30053282,
"posZ": -78.5510559,
"rotX": 0.0208086558,
"rotY": 270.0,
"rotZ": 0.0167711843,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wigfrid",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268300,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898316685/8F0D139E261AA58C057F15129746D4F9BFC828D8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898316946/52DEAFDC5395EA48BBC9754E9D63051FC0C0B7F8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "181416",
"Name": "CardCustom",
"Transform": {
"posX": -47.20768,
"posY": 1.29929566,
"posZ": -78.520256,
"rotX": 0.0208087675,
"rotY": 269.999847,
"rotZ": 0.0167711023,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Webber",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272500,
"SidewaysCard": false,
"CustomDeck": {
"2725": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899470914/88CDEC0A53F765A0A75478FAA4E86456BA88059A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898336620/55169EAD27C926A8ACEF0EC43559AD90E3B2B61F/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5244b7",
"Name": "CardCustom",
"Transform": {
"posX": -47.1529732,
"posY": 1.29834735,
"posZ": -81.82776,
"rotX": 0.0208089259,
"rotY": 270.000458,
"rotZ": 0.01677099,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Webber",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269200,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"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": "6187b2",
"Name": "CardCustom",
"Transform": {
"posX": -47.2170753,
"posY": 1.29763412,
"posZ": -84.18476,
"rotX": 0.020808626,
"rotY": 270.000275,
"rotZ": 0.016771147,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spider Nest",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269300,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898339663/7FB2D02F1AC320A1C9754C3F612174F4E8777E49/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8d7ecb",
"Name": "CardCustom",
"Transform": {
"posX": -47.2175751,
"posY": 1.29692459,
"posZ": -86.60826,
"rotX": 0.020808531,
"rotY": 270.000244,
"rotZ": 0.01677121,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frightening Monster",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269400,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898343017/1801F0D520A5728AF00024492811896B428EFE07/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "70de23",
"Name": "CardCustom",
"Transform": {
"posX": -50.7880745,
"posY": 1.2956264,
"posZ": -86.61336,
"rotX": 0.0208112765,
"rotY": 269.9909,
"rotZ": 0.0167678,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fatalistic",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272800,
"SidewaysCard": false,
"CustomDeck": {
"2728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899473520/2BC3D1467BDED416809E20BFC6EC1EF36AA6A889/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "144811",
"Name": "CardCustom",
"Transform": {
"posX": -50.8316727,
"posY": 1.29632,
"posZ": -84.18976,
"rotX": 0.0208147038,
"rotY": 269.9787,
"rotZ": 0.0167634543,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abigail's Flower",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272700,
"SidewaysCard": false,
"CustomDeck": {
"2727": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899472537/E8D0A8D1C18AA839EA5E068E72B559753DB7291D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b679ff",
"Name": "CardCustom",
"Transform": {
"posX": -50.6292725,
"posY": 1.297082,
"posZ": -81.8374557,
"rotX": 0.0208090562,
"rotY": 270.000183,
"rotZ": 0.0167706367,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wendy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270300,
"SidewaysCard": false,
"CustomDeck": {
"2703": {
"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": "93503f",
"Name": "CardCustom",
"Transform": {
"posX": -50.589077,
"posY": 1.29805994,
"posZ": -78.54676,
"rotX": 0.0208088085,
"rotY": 269.999939,
"rotZ": 0.0167711973,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wendy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272600,
"SidewaysCard": false,
"CustomDeck": {
"2726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899471806/855DF0002703678AE230FBF475B442A5DE66638F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898367108/A79E393C84D2EAA9082A80E326247660206E83DD/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ab220",
"Name": "CardCustom",
"Transform": {
"posX": -54.1502075,
"posY": 1.29681361,
"posZ": -78.38579,
"rotX": 0.0208088,
"rotY": 270.000122,
"rotZ": 0.016771229,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271000,
"SidewaysCard": false,
"CustomDeck": {
"2710": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898386513/DD28802CDD40D5A1092DF6781C39A72343582C7E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898386748/CEBAC468AA79534F5104E69B37D1D916CE3944B7/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6006fa",
"Name": "CardCustom",
"Transform": {
"posX": -54.1425323,
"posY": 1.2958225,
"posZ": -81.7813644,
"rotX": 0.020802727,
"rotY": 270.020264,
"rotZ": 0.0167777054,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wes",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "415ff5",
"Name": "Deck",
"Transform": {
"posX": -54.3089752,
"posY": 1.31680155,
"posZ": -84.26956,
"rotX": 0.0208021738,
"rotY": 270.023041,
"rotZ": 0.0167790465,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Wes' Balloons",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
271200,
271200,
271200
],
"CustomDeck": {
"2712": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898389650/90A10F18912AC2D8704D07B78D7FEC156AABD4E1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e94645",
"Name": "CardCustom",
"Transform": {
"posX": -40.2879677,
"posY": 1.31078815,
"posZ": -47.75366,
"rotX": 0.0210744869,
"rotY": 270.015259,
"rotZ": 0.0150151523,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wes' Balloons",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271200,
"SidewaysCard": false,
"CustomDeck": {
"2712": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898389650/90A10F18912AC2D8704D07B78D7FEC156AABD4E1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03f0af",
"Name": "CardCustom",
"Transform": {
"posX": -40.4391,
"posY": 1.34689653,
"posZ": -48.09193,
"rotX": 0.0208135135,
"rotY": 270.015228,
"rotZ": 0.010607454,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wes' Balloons",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271200,
"SidewaysCard": false,
"CustomDeck": {
"2712": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898389650/90A10F18912AC2D8704D07B78D7FEC156AABD4E1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "45a857",
"Name": "CardCustom",
"Transform": {
"posX": -39.9758,
"posY": 1.38662434,
"posZ": -48.0256577,
"rotX": 0.0199799053,
"rotY": 270.015259,
"rotZ": 0.0168507844,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wes' Balloons",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271200,
"SidewaysCard": false,
"CustomDeck": {
"2712": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898389650/90A10F18912AC2D8704D07B78D7FEC156AABD4E1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "0b4057",
"Name": "CardCustom",
"Transform": {
"posX": -54.2104759,
"posY": 1.29435074,
"posZ": -86.72486,
"rotX": 0.0208057351,
"rotY": 270.0099,
"rotZ": 0.0167745147,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Slip-Up",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271300,
"SidewaysCard": false,
"CustomDeck": {
"2713": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898391457/A4759A8D0EAF724A165459E1396078C882CE2D44/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c91bbc",
"Name": "CardCustom",
"Transform": {
"posX": -39.9735,
"posY": 1.30901253,
"posZ": -54.2999,
"rotX": 0.02080843,
"rotY": 270.000366,
"rotZ": 0.0167713,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267100,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898259178/C1864395B8C1430DFFAD870A192394A011D99C1F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898273650/18F35D4A34FB7919A532A5209615A840687955EB/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "049651",
"Name": "CardCustom",
"Transform": {
"posX": -39.9984,
"posY": 1.307965,
"posZ": -57.8479,
"rotX": 0.02080881,
"rotY": 269.99942,
"rotZ": 0.01677098,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wilson",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267000,
"SidewaysCard": false,
"CustomDeck": {
"2670": {
"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": "10aa14",
"Name": "CardCustom",
"Transform": {
"posX": -40.0201,
"posY": 1.30725217,
"posZ": -60.2564,
"rotX": 0.0208086967,
"rotY": 269.999725,
"rotZ": 0.01677125,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unearthly Knowledge",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267200,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898274682/8F5B1A8C12FB022C3EB46463C4EB14074691BA48/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a067d0",
"Name": "CardCustom",
"Transform": {
"posX": -40.1134,
"posY": 1.30650425,
"posZ": -62.6951,
"rotX": 0.0208086111,
"rotY": 269.999756,
"rotZ": 0.0167712141,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flawed Hypotheses",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271500,
"SidewaysCard": false,
"CustomDeck": {
"2715": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899103221/F1943CB73C2158AAA5BEB811F9EE9F39441AFAE7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c96866",
"Name": "CardCustom",
"Transform": {
"posX": -43.6356,
"posY": 1.30764771,
"posZ": -54.4187,
"rotX": 0.0208086763,
"rotY": 270.0,
"rotZ": 0.0167712662,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wolfgang",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271600,
"SidewaysCard": false,
"CustomDeck": {
"2716": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899455362/F14F6EEC9DE9D2F93B042E83B47C551C4624A26B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898293625/CEB1B5F3A0D99442CE0E297560EB6C4928E74557/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8e009f",
"Name": "CardCustom",
"Transform": {
"posX": -43.7559,
"posY": 1.3065722,
"posZ": -57.9442,
"rotX": 0.020808788,
"rotY": 269.999634,
"rotZ": 0.0167710371,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Wolfgang",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267900,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"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": "dfc083",
"Name": "CardCustom",
"Transform": {
"posX": -43.4955,
"posY": 1.30599535,
"posZ": -60.2381,
"rotX": 0.0208085049,
"rotY": 270.0,
"rotZ": 0.0167709179,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wolfgang's Appetite",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268000,
"SidewaysCard": false,
"CustomDeck": {
"2680": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898308953/54B19BE8AD8FB378D499116A6D909BB2422C2212/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dab2b7",
"Name": "CardCustom",
"Transform": {
"posX": -43.6456,
"posY": 1.305217,
"posZ": -62.7103,
"rotX": 0.02080853,
"rotY": 270.0,
"rotZ": 0.0167709552,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I AM MIGHTY!\"",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268100,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898311439/D368D282E5822C7F846C05CDA0EE33BE2A0E995F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "23d08a",
"Name": "CardCustom",
"Transform": {
"posX": -43.5625,
"posY": 1.30455184,
"posZ": -65.0863,
"rotX": 0.0208085887,
"rotY": 270.000183,
"rotZ": 0.016771147,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nyctophobia",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268200,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898313757/C9621BE4CEEC9415EDDF8505A692DF46A0CFAE5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4eef97",
"Name": "CardCustom",
"Transform": {
"posX": -46.9905,
"posY": 1.30403566,
"posZ": -62.5961,
"rotX": 0.0208025724,
"rotY": 270.0204,
"rotZ": 0.0167785771,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Werebeaver Curse",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269000,
"SidewaysCard": false,
"CustomDeck": {
"2690": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898332971/9990312C6292D61B75391A32030A97E2E2F992F3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "208789",
"Name": "CardCustom",
"Transform": {
"posX": -46.9577,
"posY": 1.304746,
"posZ": -60.2105,
"rotX": 0.0208103526,
"rotY": 269.993927,
"rotZ": 0.016768869,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271700,
"SidewaysCard": false,
"CustomDeck": {
"2717": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899456809/C2D18D2AA439409FFFD0AEF775B1A2571C999AB8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3b7f5e",
"Name": "CardCustom",
"Transform": {
"posX": -46.8041,
"posY": 1.30546892,
"posZ": -57.9314,
"rotX": 0.0208088327,
"rotY": 269.999969,
"rotZ": 0.01677144,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Woodie",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268800,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"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": "ea2ee7",
"Name": "CardCustom",
"Transform": {
"posX": -46.9767,
"posY": 1.30641329,
"posZ": -54.4904,
"rotX": 0.0208086576,
"rotY": 270.0,
"rotZ": 0.0167710781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Woodie",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268700,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898325912/3547339BCF4EB42E9C45A7BCCC73D6F747F39D44/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898326154/7EB94AB9E901FBF4EA4C2AA309B4DF739D71AEA6/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "374e9c",
"Name": "CardCustom",
"Transform": {
"posX": -50.3555,
"posY": 1.30513906,
"posZ": -54.652,
"rotX": 0.0208085869,
"rotY": 269.999969,
"rotZ": 0.01677134,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Willow",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271800,
"SidewaysCard": false,
"CustomDeck": {
"2718": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899457745/CFB2EDC557DE2FCFD95F4432C3AB88C4231F1D04/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899457981/4872C08E250592B2C8BBE7EEB4192178F47641A3/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a96330",
"Name": "CardCustom",
"Transform": {
"posX": -50.5937,
"posY": 1.30409467,
"posZ": -57.9241,
"rotX": 0.0208087433,
"rotY": 270.000122,
"rotZ": 0.0167710353,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Willow",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269600,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"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": "aea08f",
"Name": "CardCustom",
"Transform": {
"posX": -50.5124,
"posY": 1.30345154,
"posZ": -60.2221,
"rotX": 0.0208103452,
"rotY": 269.9937,
"rotZ": 0.0167688783,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bernie",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271900,
"SidewaysCard": false,
"CustomDeck": {
"2719": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899459171/B355D5775A7B72C8617FFE22481ED7B67E581B98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0de265",
"Name": "CardCustom",
"Transform": {
"posX": -50.5162,
"posY": 1.30271864,
"posZ": -62.7217,
"rotX": 0.0208138265,
"rotY": 269.981567,
"rotZ": 0.0167644713,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Willow's Lighter",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270000,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716898360050/C26B9D80E2A86C4388B34BD132478313F9EBA277/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4506c2",
"Name": "CardCustom",
"Transform": {
"posX": -53.8878,
"posY": 1.30392015,
"posZ": -54.433,
"rotX": 0.0208087545,
"rotY": 269.999969,
"rotZ": 0.0167711414,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "WX-78",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272000,
"SidewaysCard": false,
"CustomDeck": {
"2720": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899460323/D9DECD81738A9688BA3133A78309CB1E19918CF5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899460532/2D2D9163EC589688BDA73732A7D5F7F10BC5F2C6/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c972bd",
"Name": "CardCustom",
"Transform": {
"posX": -53.9467,
"posY": 1.302888,
"posZ": -57.8863,
"rotX": 0.0208086949,
"rotY": 270.000031,
"rotZ": 0.01677079,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "WX-78",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 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": "16e931",
"Name": "Deck",
"Transform": {
"posX": -54.2816,
"posY": 1.32870221,
"posZ": -60.0938,
"rotX": 0.0208068,
"rotY": 270.006653,
"rotZ": 0.0167733412,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Upgraded",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
272100,
272100,
272100,
272100
],
"CustomDeck": {
"2721": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899461469/1B141DDF604D47CBE82F5886882B42D8FDEF07D9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dbb051",
"Name": "CardCustom",
"Transform": {
"posX": -54.216,
"posY": 1.30205512,
"posZ": -60.1947,
"rotX": 0.0214493852,
"rotY": 270.0068,
"rotZ": 0.0127625642,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Upgraded",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272100,
"SidewaysCard": false,
"CustomDeck": {
"2721": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899461469/1B141DDF604D47CBE82F5886882B42D8FDEF07D9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dec54f",
"Name": "CardCustom",
"Transform": {
"posX": -58.0425644,
"posY": 1.30107844,
"posZ": -58.87076,
"rotX": 0.02115034,
"rotY": 270.006775,
"rotZ": 0.0145132737,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Upgraded",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272100,
"SidewaysCard": false,
"CustomDeck": {
"2721": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899461469/1B141DDF604D47CBE82F5886882B42D8FDEF07D9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "24f0de",
"Name": "CardCustom",
"Transform": {
"posX": -58.01877,
"posY": 1.34053147,
"posZ": -58.9705772,
"rotX": 0.02753791,
"rotY": 270.0068,
"rotZ": 0.009065454,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Upgraded",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272100,
"SidewaysCard": false,
"CustomDeck": {
"2721": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899461469/1B141DDF604D47CBE82F5886882B42D8FDEF07D9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f53884",
"Name": "CardCustom",
"Transform": {
"posX": -58.0187531,
"posY": 1.36775517,
"posZ": -58.970562,
"rotX": 0.0187596641,
"rotY": 270.006866,
"rotZ": 0.0161697175,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Upgraded",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272100,
"SidewaysCard": false,
"CustomDeck": {
"2721": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899461469/1B141DDF604D47CBE82F5886882B42D8FDEF07D9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "682335",
"Name": "CardCustom",
"Transform": {
"posX": -54.288,
"posY": 1.3013941,
"posZ": -62.5666,
"rotX": 0.02080845,
"rotY": 270.000031,
"rotZ": 0.016771147,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overloaded",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272200,
"SidewaysCard": false,
"CustomDeck": {
"2722": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1646593716899462643/241CF390D960FD7CE12EB1436C36E059D9A3DCF8/",
"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
}
}
]
}