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

13844 lines
485 KiB
JSON

{
"GUID": "c5c294",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 16.7304382,
"posY": 1.26842022,
"posZ": 48.1506653,
"rotX": 0.0208030064,
"rotY": 270.023254,
"rotZ": 0.01677925,
"scaleX": 1.3633405,
"scaleY": 0.2837723,
"scaleZ": 1.49288893
},
"Nickname": "Touhou Project 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/1697277697641042816/D60194A8F22DA3032E6C2AC2EE040E6321A2B259/",
"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\":{\"0869b0\":{\"lock\":false,\"pos\":{\"x\":-16.6149253845215,\"y\":1.36452674865723,\"z\":-52.1269226074219},\"rot\":{\"x\":0.0208162348717451,\"y\":269.999725341797,\"z\":0.0167681220918894}},\"0a0573\":{\"lock\":false,\"pos\":{\"x\":-26.3001403808594,\"y\":1.27108907699585,\"z\":-69.0605621337891},\"rot\":{\"x\":359.979156494141,\"y\":89.9997711181641,\"z\":359.983245849609}},\"1342d8\":{\"lock\":false,\"pos\":{\"x\":-16.6149444580078,\"y\":1.36150920391083,\"z\":-62.4357719421387},\"rot\":{\"x\":0.0208261702209711,\"y\":269.965148925781,\"z\":0.0167553927749395}},\"13d5ca\":{\"lock\":false,\"pos\":{\"x\":-16.6149711608887,\"y\":1.36186933517456,\"z\":-61.2058868408203},\"rot\":{\"x\":0.0208131205290556,\"y\":270.010925292969,\"z\":0.0167721174657345}},\"1b5323\":{\"lock\":false,\"pos\":{\"x\":-16.615026473999,\"y\":1.35690939426422,\"z\":-78.1505432128906},\"rot\":{\"x\":0.020813899114728,\"y\":270.008728027344,\"z\":0.0167708694934845}},\"1b671d\":{\"lock\":false,\"pos\":{\"x\":-22.6169147491455,\"y\":1.30638289451599,\"z\":-84.8185043334961},\"rot\":{\"x\":0.0167853347957134,\"y\":180.038314819336,\"z\":359.979217529297}},\"281a12\":{\"lock\":false,\"pos\":{\"x\":-16.6151790618896,\"y\":1.35957753658295,\"z\":-69.0352020263672},\"rot\":{\"x\":0.0208163782954216,\"y\":269.999542236328,\"z\":0.0167679116129875}},\"2b6fc7\":{\"lock\":false,\"pos\":{\"x\":-16.6151161193848,\"y\":1.35496485233307,\"z\":-84.7931060791016},\"rot\":{\"x\":0.0208100751042366,\"y\":270.022277832031,\"z\":0.0167760141193867}},\"42d2d6\":{\"lock\":false,\"pos\":{\"x\":-19.3000793457031,\"y\":1.31449115276337,\"z\":-61.2332534790039},\"rot\":{\"x\":0.0208088699728251,\"y\":269.999145507813,\"z\":0.0167697500437498}},\"47b3b0\":{\"lock\":false,\"pos\":{\"x\":-16.6151733398438,\"y\":1.35763239860535,\"z\":-75.6803359985352},\"rot\":{\"x\":0.0208201054483652,\"y\":269.987365722656,\"z\":0.0167634673416615}},\"500c37\":{\"lock\":false,\"pos\":{\"x\":-16.6142826080322,\"y\":1.35461390018463,\"z\":-85.9934844970703},\"rot\":{\"x\":0.0208162665367126,\"y\":269.999633789063,\"z\":0.0167681816965342}},\"51e457\":{\"lock\":false,\"pos\":{\"x\":-16.6134090423584,\"y\":1.35533928871155,\"z\":-83.5164566040039},\"rot\":{\"x\":0.0208170618861914,\"y\":269.998016357422,\"z\":0.0167673584073782}},\"589aa6\":{\"lock\":false,\"pos\":{\"x\":-17.1323471069336,\"y\":1.33041679859161,\"z\":-48.3126754760742},\"rot\":{\"x\":0.0208078753203154,\"y\":269.992553710938,\"z\":0.0167726166546345}},\"64505a\":{\"lock\":false,\"pos\":{\"x\":-19.3000221252441,\"y\":1.31677353382111,\"z\":-53.4358367919922},\"rot\":{\"x\":0.0208088997751474,\"y\":269.999145507813,\"z\":0.0167696960270405}},\"665ba2\":{\"lock\":false,\"pos\":{\"x\":-22.6713542938232,\"y\":1.30378532409668,\"z\":-47.1474685668945},\"rot\":{\"x\":0.0208086892962456,\"y\":269.999694824219,\"z\":0.0167711190879345}},\"6a5902\":{\"lock\":false,\"pos\":{\"x\":-16.6149368286133,\"y\":1.36416435241699,\"z\":-53.3653182983398},\"rot\":{\"x\":0.0208213459700346,\"y\":269.983764648438,\"z\":0.0167621597647667}},\"7122c7\":{\"lock\":false,\"pos\":{\"x\":-26.3001747131348,\"y\":1.26878070831299,\"z\":-76.9456329345703},\"rot\":{\"x\":359.979156494141,\"y\":89.9993057250977,\"z\":359.983215332031}},\"768f18\":{\"lock\":false,\"pos\":{\"x\":-26.29958152771,\"y\":1.26647686958313,\"z\":-84.817985534668},\"rot\":{\"x\":359.979156494141,\"y\":90.0006561279297,\"z\":359.983215332031}},\"78041d\":{\"lock\":false,\"pos\":{\"x\":-26.3001346588135,\"y\":1.27337765693665,\"z\":-61.2409591674805},\"rot\":{\"x\":359.979156494141,\"y\":89.9918670654297,\"z\":359.983245849609}},\"8d3616\":{\"lock\":false,\"pos\":{\"x\":-26.2999992370605,\"y\":1.27566230297089,\"z\":-53.436840057373},\"rot\":{\"x\":359.979156494141,\"y\":90.0000076293945,\"z\":359.983215332031}},\"96c54e\":{\"lock\":false,\"pos\":{\"x\":-16.6149406433105,\"y\":1.36380422115326,\"z\":-54.5956192016602},\"rot\":{\"x\":0.0208160281181335,\"y\":270.000244140625,\"z\":0.0167680867016315}},\"ae0475\":{\"lock\":false,\"pos\":{\"x\":-19.2997894287109,\"y\":1.3075875043869,\"z\":-84.8181838989258},\"rot\":{\"x\":0.0208100154995918,\"y\":270,\"z\":0.0167739149183035}},\"b3c8c8\":{\"lock\":false,\"pos\":{\"x\":-19.2958793640137,\"y\":1.31220138072968,\"z\":-69.0607070922852},\"rot\":{\"x\":0.0208107717335224,\"y\":269.999084472656,\"z\":0.0167726278305054}},\"b7cf86\":{\"lock\":false,\"pos\":{\"x\":-22.6169662475586,\"y\":1.31328415870667,\"z\":-61.2413902282715},\"rot\":{\"x\":0.016780287027359,\"y\":180.024520874023,\"z\":359.979187011719}},\"c3a097\":{\"lock\":false,\"pos\":{\"x\":-19.2936115264893,\"y\":1.30989539623261,\"z\":-76.9415512084961},\"rot\":{\"x\":0.0208105687052011,\"y\":269.999145507813,\"z\":0.0167724248021841}},\"ccd02d\":{\"lock\":false,\"pos\":{\"x\":-16.6149768829346,\"y\":1.36222946643829,\"z\":-59.9758911132813},\"rot\":{\"x\":0.0208128467202187,\"y\":270.010620117188,\"z\":0.0167723372578621}},\"d01288\":{\"lock\":false,\"pos\":{\"x\":-16.6149578094482,\"y\":1.35921740531921,\"z\":-70.2654876708984},\"rot\":{\"x\":0.0208169743418694,\"y\":269.999420166016,\"z\":0.016767717897892}},\"d13e2a\":{\"lock\":false,\"pos\":{\"x\":-22.6156940460205,\"y\":1.31099140644073,\"z\":-69.0756149291992},\"rot\":{\"x\":0.016780287027359,\"y\":180.024490356445,\"z\":359.979187011719}},\"dde8a8\":{\"lock\":false,\"pos\":{\"x\":-16.6144332885742,\"y\":1.35726952552795,\"z\":-76.9205856323242},\"rot\":{\"x\":0.0208170618861914,\"y\":269.999725341797,\"z\":0.0167681034654379}},\"e4c282\":{\"lock\":false,\"pos\":{\"x\":-22.6139049530029,\"y\":1.31556940078735,\"z\":-53.4381294250488},\"rot\":{\"x\":0.0167801715433598,\"y\":180.024490356445,\"z\":359.979187011719}},\"f0b6f4\":{\"lock\":false,\"pos\":{\"x\":-16.619176864624,\"y\":1.35993778705597,\"z\":-67.7996368408203},\"rot\":{\"x\":0.0208168402314186,\"y\":269.999847412109,\"z\":0.0167679712176323}},\"f7a17c\":{\"lock\":false,\"pos\":{\"x\":-22.6157646179199,\"y\":1.30868756771088,\"z\":-76.946044921875},\"rot\":{\"x\":0.0167803820222616,\"y\":180.024490356445,\"z\":359.979187011719}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0869b0",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6107388,
"posY": 1.36452961,
"posZ": -52.12274,
"rotX": 0.0208167173,
"rotY": 269.999725,
"rotZ": 0.0167678688,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0a0573",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -26.30014,
"posY": 1.27108884,
"posZ": -69.06056,
"rotX": 359.9792,
"rotY": 89.99977,
"rotZ": 359.983215,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Signature Cards and Starter Deck",
"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": "668718",
"Name": "Deck",
"Transform": {
"posX": -5.41004038,
"posY": 2.99102259,
"posZ": -104.140587,
"rotX": 0.0208104644,
"rotY": 270.0,
"rotZ": 0.0167701766,
"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": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
368625,
368625,
261700,
368624,
368500,
448029,
230308,
368508,
538714,
261700,
230314,
230318,
380126,
292913,
538609,
538615,
448029,
368508,
230314,
538710,
380126,
230318,
368504,
538615,
538710,
538714,
230308,
368500,
368504,
368624
],
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2929": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "78cbb8",
"Name": "Card",
"Transform": {
"posX": 30.30814,
"posY": 1.38178635,
"posZ": 67.14867,
"rotX": 0.0239970125,
"rotY": 270.000061,
"rotZ": 0.0153343771,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pickpocketing",
"Description": "",
"GMNotes": "{\n \"id\": \"01046\",\n \"alternate_ids\": [ \"01546\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368625,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a6e49",
"Name": "Card",
"Transform": {
"posX": 30.3081532,
"posY": 1.37940383,
"posZ": 67.148674,
"rotX": 0.0205595288,
"rotY": 270.000061,
"rotZ": 0.0154316556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pickpocketing",
"Description": "",
"GMNotes": "{\n \"id\": \"01046\",\n \"alternate_ids\": [ \"01546\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368625,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7ee579",
"Name": "Card",
"Transform": {
"posX": 30.3081474,
"posY": 1.40424728,
"posZ": 67.148674,
"rotX": 0.023004923,
"rotY": 270.000031,
"rotZ": 0.0157863237,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Watch this!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"03233\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 261700,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6be10f",
"Name": "Card",
"Transform": {
"posX": 30.3081818,
"posY": 1.29249907,
"posZ": 67.1487,
"rotX": 0.020990679,
"rotY": 270.0,
"rotZ": 0.0155722443,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky Cigarette Case",
"Description": "",
"GMNotes": "{\n \"id\": \"04107\",\n \"alternate_ids\": [ \"60308\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368624,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8c6fb5",
"Name": "Card",
"Transform": {
"posX": 30.3081665,
"posY": 1.600642,
"posZ": 67.14869,
"rotX": 0.0211252011,
"rotY": 270.000061,
"rotZ": 0.0166601054,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guts",
"Description": "",
"GMNotes": "{\n \"id\": \"01089\",\n \"alternate_ids\": [ \"01589\" ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368500,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1f4738",
"Name": "Card",
"Transform": {
"posX": 30.3081474,
"posY": 1.50013578,
"posZ": 67.148674,
"rotX": 0.02245286,
"rotY": 270.0,
"rotZ": 0.016062133,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spectral Razor",
"Description": "",
"GMNotes": "{\n \"id\": \"06201\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 448029,
"SidewaysCard": false,
"CustomDeck": {
"4480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5e18dc",
"Name": "Card",
"Transform": {
"posX": 30.3081665,
"posY": 1.57004023,
"posZ": 67.14869,
"rotX": 0.0211077314,
"rotY": 270.0,
"rotZ": 0.0166511517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Protection",
"Description": "",
"GMNotes": "{\n \"id\": \"01065\",\n \"alternate_ids\": [ \"01565\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230308,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b0b5ce",
"Name": "Card",
"Transform": {
"posX": 30.3081532,
"posY": 1.62992835,
"posZ": 67.148674,
"rotX": 0.0206984673,
"rotY": 270.0,
"rotZ": 0.0162352957,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexpected Courage",
"Description": "",
"GMNotes": "{\n \"id\": \"01093\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368508,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b2d75",
"Name": "Card",
"Transform": {
"posX": 30.30817,
"posY": 1.5334928,
"posZ": 67.1487,
"rotX": 0.0193107016,
"rotY": 270.000061,
"rotZ": 0.0162234847,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Voice of Ra",
"Description": "",
"GMNotes": "{\n \"id\": \"60416\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538714,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e75050",
"Name": "Card",
"Transform": {
"posX": 30.3081474,
"posY": 1.41583133,
"posZ": 67.148674,
"rotX": 0.0229791477,
"rotY": 270.000031,
"rotZ": 0.0158074349,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Watch this!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"03233\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 261700,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "303989",
"Name": "Card",
"Transform": {
"posX": 30.3081665,
"posY": 1.52213192,
"posZ": 67.1487,
"rotX": 0.0189766828,
"rotY": 270.000061,
"rotZ": 0.0161124058,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Storm of Spirits",
"Description": "",
"GMNotes": "{\n \"id\": \"03153\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230314,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6ecc59",
"Name": "Card",
"Transform": {
"posX": 30.3081627,
"posY": 1.47127056,
"posZ": 67.14868,
"rotX": 0.0215568151,
"rotY": 270.0,
"rotZ": 0.0164449979,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Initiate",
"Description": "",
"GMNotes": "{\n \"id\": \"01063\",\n \"alternate_ids\": [ \"01563\" ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}",
"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": 230318,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b00ab",
"Name": "Card",
"Transform": {
"posX": 30.3081512,
"posY": 1.4956696,
"posZ": 67.148674,
"rotX": 0.0221913662,
"rotY": 270.0,
"rotZ": 0.0161825661,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Read the Signs",
"Description": "",
"GMNotes": "{\n \"id\": \"06117\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 380126,
"SidewaysCard": false,
"CustomDeck": {
"3801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8bfdb6",
"Name": "Card",
"Transform": {
"posX": 30.3081551,
"posY": 1.37082827,
"posZ": 67.148674,
"rotX": 0.0225038566,
"rotY": 270.0,
"rotZ": 0.0160018969,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Investments",
"Description": "",
"GMNotes": "{\n \"id\": \"05233\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Connection.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 292913,
"SidewaysCard": false,
"CustomDeck": {
"2929": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1462fd",
"Name": "Card",
"Transform": {
"posX": 30.3081455,
"posY": 1.3936305,
"posZ": 67.14867,
"rotX": 0.0231982246,
"rotY": 270.000061,
"rotZ": 0.0156951714,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Streetwise",
"Description": "",
"GMNotes": "{\n \"id\": \"60311\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538609,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "042348",
"Name": "Card",
"Transform": {
"posX": 30.30817,
"posY": 1.42835963,
"posZ": 67.14869,
"rotX": 0.0237255562,
"rotY": 269.999756,
"rotZ": 0.0155503517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nimble",
"Description": "",
"GMNotes": "{\n \"id\": \"60317\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538615,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5f68cf",
"Name": "Card",
"Transform": {
"posX": 30.3081455,
"posY": 1.51058412,
"posZ": 67.14867,
"rotX": 0.0225445088,
"rotY": 270.0,
"rotZ": 0.0160364173,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spectral Razor",
"Description": "",
"GMNotes": "{\n \"id\": \"06201\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 448029,
"SidewaysCard": false,
"CustomDeck": {
"4480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a998f7",
"Name": "Card",
"Transform": {
"posX": 30.30815,
"posY": 1.61600924,
"posZ": 67.148674,
"rotX": 0.0199134015,
"rotY": 270.0,
"rotZ": 0.0164400861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexpected Courage",
"Description": "",
"GMNotes": "{\n \"id\": \"01093\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368508,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "942656",
"Name": "Card",
"Transform": {
"posX": 30.3081436,
"posY": 1.516064,
"posZ": 67.14867,
"rotX": 0.0193011835,
"rotY": 270.0,
"rotZ": 0.0161700733,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Storm of Spirits",
"Description": "",
"GMNotes": "{\n \"id\": \"03153\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230314,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a175d",
"Name": "Card",
"Transform": {
"posX": 30.3081665,
"posY": 1.45523953,
"posZ": 67.14869,
"rotX": 0.02121514,
"rotY": 270.000031,
"rotZ": 0.01659393,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Robes of Endless Night",
"Description": "",
"GMNotes": "{\n \"id\": \"60412\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538710,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc2ae9",
"Name": "Card",
"Transform": {
"posX": 30.3081532,
"posY": 1.48498774,
"posZ": 67.148674,
"rotX": 0.022107197,
"rotY": 270.0,
"rotZ": 0.0162074957,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Read the Signs",
"Description": "",
"GMNotes": "{\n \"id\": \"06117\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 380126,
"SidewaysCard": false,
"CustomDeck": {
"3801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "28e43d",
"Name": "Card",
"Transform": {
"posX": 30.30816,
"posY": 1.48182356,
"posZ": 67.14868,
"rotX": 0.0216769464,
"rotY": 270.0,
"rotZ": 0.0164027549,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Initiate",
"Description": "",
"GMNotes": "{\n \"id\": \"01063\",\n \"alternate_ids\": [ \"01563\" ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}",
"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": 230318,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca4ab9",
"Name": "Card",
"Transform": {
"posX": 30.30816,
"posY": 1.61641884,
"posZ": 67.14868,
"rotX": 0.0213656444,
"rotY": 270.0,
"rotZ": 0.0165628251,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Manual Dexterity",
"Description": "",
"GMNotes": "{\n \"id\": \"01092\",\n \"alternate_ids\": [ \"01592\" ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368504,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c633ca",
"Name": "Card",
"Transform": {
"posX": 30.3081417,
"posY": 1.41942239,
"posZ": 67.14867,
"rotX": 0.02340042,
"rotY": 270.0,
"rotZ": 0.01561501,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nimble",
"Description": "",
"GMNotes": "{\n \"id\": \"60317\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538615,
"SidewaysCard": false,
"CustomDeck": {
"5386": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "46da2d",
"Name": "Card",
"Transform": {
"posX": 30.3081551,
"posY": 1.45959139,
"posZ": 67.148674,
"rotX": 0.022067396,
"rotY": 270.000031,
"rotZ": 0.01622568,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Robes of Endless Night",
"Description": "",
"GMNotes": "{\n \"id\": \"60412\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538710,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "57235f",
"Name": "Card",
"Transform": {
"posX": 30.30814,
"posY": 1.54534173,
"posZ": 67.14867,
"rotX": 0.0205750689,
"rotY": 270.0,
"rotZ": 0.0155905038,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Voice of Ra",
"Description": "",
"GMNotes": "{\n \"id\": \"60416\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538714,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "70f01d",
"Name": "Card",
"Transform": {
"posX": 30.3081646,
"posY": 1.58045673,
"posZ": 67.14868,
"rotX": 0.021214962,
"rotY": 270.0,
"rotZ": 0.016618643,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Protection",
"Description": "",
"GMNotes": "{\n \"id\": \"01065\",\n \"alternate_ids\": [ \"01565\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230308,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "401104",
"Name": "Card",
"Transform": {
"posX": 30.30816,
"posY": 1.58569551,
"posZ": 67.14868,
"rotX": 0.0213842746,
"rotY": 270.000061,
"rotZ": 0.0165370554,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guts",
"Description": "",
"GMNotes": "{\n \"id\": \"01089\",\n \"alternate_ids\": [ \"01589\" ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368500,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6d1ba6",
"Name": "Card",
"Transform": {
"posX": 30.308157,
"posY": 1.6015656,
"posZ": 67.14868,
"rotX": 0.0216141064,
"rotY": 270.0,
"rotZ": 0.0164443143,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Manual Dexterity",
"Description": "",
"GMNotes": "{\n \"id\": \"01092\",\n \"alternate_ids\": [ \"01592\" ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368504,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3a07e9",
"Name": "Card",
"Transform": {
"posX": 30.3081646,
"posY": 1.34590852,
"posZ": 67.14868,
"rotX": 0.0240312051,
"rotY": 270.0,
"rotZ": 0.0151588842,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky Cigarette Case",
"Description": "",
"GMNotes": "{\n \"id\": \"04107\",\n \"alternate_ids\": [ \"60308\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368624,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "6ed3bf",
"Name": "Card",
"Transform": {
"posX": -35.4268723,
"posY": 3.86369824,
"posZ": -89.43444,
"rotX": 0.0208107047,
"rotY": 269.994,
"rotZ": 0.0167694855,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flying Blind",
"Description": "Weakness",
"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": 379607,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3429b0",
"Name": "Card",
"Transform": {
"posX": -33.1448555,
"posY": 3.86455035,
"posZ": -87.80955,
"rotX": 0.0208106786,
"rotY": 269.994049,
"rotZ": 0.01676992,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mini-Hakkero",
"Description": "Eight Trigram Furnace",
"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": 379606,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f67c8d",
"Name": "Card",
"Transform": {
"posX": -26.30021,
"posY": 3.37602043,
"posZ": -69.0606,
"rotX": 0.0207959749,
"rotY": 269.9941,
"rotZ": 0.0167492218,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Magical Mimicry",
"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": 379605,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "1342d8",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6107616,
"posY": 1.361512,
"posZ": -62.4315834,
"rotX": 0.0208264366,
"rotY": 269.965149,
"rotZ": 0.01675545,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "13d5ca",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6107883,
"posY": 1.36187208,
"posZ": -61.2017059,
"rotX": 0.02081307,
"rotY": 270.010925,
"rotZ": 0.0167720784,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1b5323",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6108437,
"posY": 1.35691214,
"posZ": -78.14636,
"rotX": 0.0208140388,
"rotY": 270.008728,
"rotZ": 0.0167710353,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1b671d",
"Name": "Card",
"Transform": {
"posX": -22.6169147,
"posY": 1.30638278,
"posZ": -84.8185043,
"rotX": 0.0167851578,
"rotY": 180.0383,
"rotZ": 359.979218,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Fujiwara no Mokou",
"Description": "The Immortal",
"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": 379504,
"SidewaysCard": true,
"CustomDeck": {
"3795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904294967/B4D926C197E0AE17DD9C63E0F6DE5779BBCCABB1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904295790/8CF9198FDA65F0E54683DF9216C976F0AD09E48A/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "281a12",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6109962,
"posY": 1.35958028,
"posZ": -69.03102,
"rotX": 0.0208169464,
"rotY": 269.999542,
"rotZ": 0.0167678315,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2b6fc7",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6109333,
"posY": 1.35496759,
"posZ": -84.7889252,
"rotX": 0.0208094884,
"rotY": 270.022278,
"rotZ": 0.0167760029,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "42d2d6",
"Name": "Card",
"Transform": {
"posX": -19.30008,
"posY": 1.31449115,
"posZ": -61.2332535,
"rotX": 0.0208091028,
"rotY": 269.999146,
"rotZ": 0.0167707186,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Ran Yakumo",
"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": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 379701,
"SidewaysCard": false,
"CustomDeck": {
"3797": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904329658/CDE03457D765E04921700D604B48A8496619D223/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904330165/43E44FFECA42DF35E4E524E1BC639176C143B977/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "47b3b0",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6109829,
"posY": 1.35763514,
"posZ": -75.67616,
"rotX": 0.0208203625,
"rotY": 269.987366,
"rotZ": 0.0167634785,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "500c37",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6100979,
"posY": 1.35461664,
"posZ": -85.9893,
"rotX": 0.0208162218,
"rotY": 269.999634,
"rotZ": 0.0167682059,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "51e457",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6092186,
"posY": 1.355342,
"posZ": -83.51228,
"rotX": 0.0208168514,
"rotY": 269.998016,
"rotZ": 0.0167674534,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "589aa6",
"Name": "Custom_Model",
"Transform": {
"posX": -17.13236,
"posY": 1.3304168,
"posZ": -48.31269,
"rotX": 0.0208137669,
"rotY": 269.992554,
"rotZ": 0.0167703852,
"scaleX": 0.250000477,
"scaleY": 0.250000477,
"scaleZ": 0.250000477
},
"Nickname": "Touhou Investigators Data Helper",
"Description": "This spawns tokens for cards that need them.",
"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\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\n \"Chen:Black Cat of Bad Omens\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Hourai Elixir\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 5\r\n }\r\n}\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\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "64505a",
"Name": "Card",
"Transform": {
"posX": -19.3000221,
"posY": 1.31677353,
"posZ": -53.4358368,
"rotX": 0.0208091643,
"rotY": 269.999146,
"rotZ": 0.0167706888,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Youmu Konpaku",
"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": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 379700,
"SidewaysCard": false,
"CustomDeck": {
"3797": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904329658/CDE03457D765E04921700D604B48A8496619D223/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904330165/43E44FFECA42DF35E4E524E1BC639176C143B977/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "665ba2",
"Name": "Custom_PDF",
"Transform": {
"posX": -22.6713543,
"posY": 1.30378532,
"posZ": -47.14747,
"rotX": 0.0208086856,
"rotY": 269.9997,
"rotZ": 0.0167711545,
"scaleX": 2.17822933,
"scaleY": 1.0,
"scaleZ": 2.17822933
},
"Nickname": "Touhou Project Investigators FAQ",
"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/1775000854904354394/6C3D05490800E2D2EF466594D6A9BD215C36045E/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6a5902",
"Name": "Custom_Model",
"Transform": {
"posX": -16.610754,
"posY": 1.36416709,
"posZ": -53.3611374,
"rotX": 0.0208217744,
"rotY": 269.983765,
"rotZ": 0.0167620871,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7122c7",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -26.3001747,
"posY": 1.26878071,
"posZ": -76.94563,
"rotX": 359.979156,
"rotY": 89.9993057,
"rotZ": 359.983246,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Signature Cards and Starter Deck",
"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": "0c00a5",
"Name": "Deck",
"Transform": {
"posX": -9.772938,
"posY": 3.015059,
"posZ": -104.775024,
"rotX": 0.0207897462,
"rotY": 270.028931,
"rotZ": 0.0167980772,
"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": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
230331,
230318,
538714,
380126,
538706,
582423,
380126,
538710,
230331,
230318,
230308,
230308,
584926,
368500,
368509,
582423,
230304,
230304,
230313,
444024,
444024,
230328,
444024,
230328,
277604,
230301,
230313,
368500,
368509,
277604,
230301,
538706,
538714,
584926,
538710
],
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5824": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5849": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4440": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7d72e6",
"Name": "Card",
"Transform": {
"posX": 17.0907459,
"posY": 1.425255,
"posZ": 70.27959,
"rotX": 0.0214422643,
"rotY": 270.0,
"rotZ": 0.0158608854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "St. Hubert's Key",
"Description": "Cleansing Fire",
"GMNotes": "{\n \"id\": \"03269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230331,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc7b32",
"Name": "Card",
"Transform": {
"posX": 16.8519516,
"posY": 1.46761239,
"posZ": 71.2013,
"rotX": 0.0210373756,
"rotY": 270.0,
"rotZ": 0.0162463244,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Initiate",
"Description": "",
"GMNotes": "{\n \"id\": \"01063\",\n \"alternate_ids\": [ \"01563\" ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}",
"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": 230318,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "faa649",
"Name": "Card",
"Transform": {
"posX": 16.8443813,
"posY": 1.5680126,
"posZ": 71.06244,
"rotX": 0.0215818081,
"rotY": 269.999756,
"rotZ": 0.0161064751,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Voice of Ra",
"Description": "",
"GMNotes": "{\n \"id\": \"60416\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538714,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a56d8",
"Name": "Card",
"Transform": {
"posX": 16.4749565,
"posY": 1.56433153,
"posZ": 70.41336,
"rotX": 0.0208027866,
"rotY": 270.0,
"rotZ": 0.0166406613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Read the Signs",
"Description": "",
"GMNotes": "{\n \"id\": \"06117\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 380126,
"SidewaysCard": false,
"CustomDeck": {
"3801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ff081e",
"Name": "Card",
"Transform": {
"posX": 16.2673531,
"posY": 1.39084768,
"posZ": 70.58469,
"rotX": 0.0213649161,
"rotY": 270.000061,
"rotZ": 0.01513285,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Clairvoyance",
"Description": "",
"GMNotes": "{\n \"id\": \"60408\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"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": 538706,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6d8693",
"Name": "Card",
"Transform": {
"posX": 16.3106041,
"posY": 1.36640882,
"posZ": 71.10581,
"rotX": 0.0203283355,
"rotY": 270.0,
"rotZ": 0.0155568831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sword Cane",
"Description": "",
"GMNotes": "{\n \"id\": \"07029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 582423,
"SidewaysCard": false,
"CustomDeck": {
"5824": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6f9d0c",
"Name": "Card",
"Transform": {
"posX": 16.4752922,
"posY": 1.556619,
"posZ": 70.378334,
"rotX": 0.0208061151,
"rotY": 270.0,
"rotZ": 0.0166682731,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Read the Signs",
"Description": "",
"GMNotes": "{\n \"id\": \"06117\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 380126,
"SidewaysCard": false,
"CustomDeck": {
"3801": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "37a986",
"Name": "Card",
"Transform": {
"posX": 16.8150787,
"posY": 1.45137131,
"posZ": 70.65515,
"rotX": 0.0210190136,
"rotY": 270.000031,
"rotZ": 0.0165227484,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Robes of Endless Night",
"Description": "",
"GMNotes": "{\n \"id\": \"60412\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538710,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca68a0",
"Name": "Card",
"Transform": {
"posX": 17.0913429,
"posY": 1.41275287,
"posZ": 70.22983,
"rotX": 0.02155803,
"rotY": 269.999939,
"rotZ": 0.0159124285,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "St. Hubert's Key",
"Description": "Cleansing Fire",
"GMNotes": "{\n \"id\": \"03269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230331,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8e0f89",
"Name": "Card",
"Transform": {
"posX": 16.83113,
"posY": 1.47684467,
"posZ": 71.20113,
"rotX": 0.0210772082,
"rotY": 270.0,
"rotZ": 0.016165603,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Initiate",
"Description": "",
"GMNotes": "{\n \"id\": \"01063\",\n \"alternate_ids\": [ \"01563\" ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}",
"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": 230318,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d039d",
"Name": "Card",
"Transform": {
"posX": 16.3577366,
"posY": 1.59693992,
"posZ": 71.24065,
"rotX": 0.0206450559,
"rotY": 270.0,
"rotZ": 0.0160999,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Protection",
"Description": "",
"GMNotes": "{\n \"id\": \"01065\",\n \"alternate_ids\": [ \"01565\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230308,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4814fe",
"Name": "Card",
"Transform": {
"posX": 16.35774,
"posY": 1.58924007,
"posZ": 71.240654,
"rotX": 0.0206703562,
"rotY": 270.0,
"rotZ": 0.01618086,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Protection",
"Description": "",
"GMNotes": "{\n \"id\": \"01065\",\n \"alternate_ids\": [ \"01565\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230308,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "315d68",
"Name": "Card",
"Transform": {
"posX": 16.94301,
"posY": 1.628381,
"posZ": 70.9435959,
"rotX": 0.0213609654,
"rotY": 270.0,
"rotZ": 0.0164095536,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Promise of Power",
"Description": "",
"GMNotes": "{\n \"id\": \"07032\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 584926,
"SidewaysCard": false,
"CustomDeck": {
"5849": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "571dfb",
"Name": "Card",
"Transform": {
"posX": 16.30788,
"posY": 1.29922223,
"posZ": 71.54056,
"rotX": 0.0123027712,
"rotY": 270.009644,
"rotZ": 356.947723,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guts",
"Description": "",
"GMNotes": "{\n \"id\": \"01089\",\n \"alternate_ids\": [ \"01589\" ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368500,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9118ec",
"Name": "Card",
"Transform": {
"posX": 17.015707,
"posY": 1.64395916,
"posZ": 71.38951,
"rotX": 0.0209593549,
"rotY": 269.9998,
"rotZ": 0.0155005492,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Cache",
"Description": "",
"GMNotes": "{\n \"id\": \"01088\",\n \"alternate_ids\": [ \"01588\" ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368509,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "507330",
"Name": "Card",
"Transform": {
"posX": 16.3106,
"posY": 1.37289441,
"posZ": 71.10581,
"rotX": 0.020191934,
"rotY": 270.0,
"rotZ": 0.0152268447,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sword Cane",
"Description": "",
"GMNotes": "{\n \"id\": \"07029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 582423,
"SidewaysCard": false,
"CustomDeck": {
"5824": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f1196",
"Name": "Card",
"Transform": {
"posX": 16.8241081,
"posY": 1.48333275,
"posZ": 71.12598,
"rotX": 0.0212097261,
"rotY": 270.0,
"rotZ": 0.0161367916,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawn to the Flame",
"Description": "",
"GMNotes": "{\n \"id\": \"01064\",\n \"alternate_ids\": [ \"01564\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230304,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "260680",
"Name": "Card",
"Transform": {
"posX": 16.8178043,
"posY": 1.48494768,
"posZ": 71.1257,
"rotX": 0.0215331279,
"rotY": 270.0,
"rotZ": 0.01563409,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawn to the Flame",
"Description": "",
"GMNotes": "{\n \"id\": \"01064\",\n \"alternate_ids\": [ \"01564\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230304,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "615fac",
"Name": "Card",
"Transform": {
"posX": 16.7256851,
"posY": 1.50583947,
"posZ": 71.0777359,
"rotX": 0.0216143765,
"rotY": 270.0,
"rotZ": 0.0157553926,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypnotic Gaze",
"Description": "",
"GMNotes": "{\n \"id\": \"02153\",\n \"alternate_ids\": [ \"60414\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230313,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf71c0",
"Name": "Card",
"Transform": {
"posX": 17.0477982,
"posY": 1.5287329,
"posZ": 71.44119,
"rotX": 0.0207687579,
"rotY": 269.999756,
"rotZ": 0.0142785171,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Open Gate",
"Description": "",
"GMNotes": "{\n \"id\": \"06029\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 444024,
"SidewaysCard": false,
"CustomDeck": {
"4440": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "45d437",
"Name": "Card",
"Transform": {
"posX": 17.0728912,
"posY": 1.51334321,
"posZ": 71.51111,
"rotX": 0.0203343667,
"rotY": 270.0,
"rotZ": 0.0135045964,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Open Gate",
"Description": "",
"GMNotes": "{\n \"id\": \"06029\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 444024,
"SidewaysCard": false,
"CustomDeck": {
"4440": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a441dd",
"Name": "Card",
"Transform": {
"posX": 16.9334145,
"posY": 1.405044,
"posZ": 70.30738,
"rotX": 0.0218900777,
"rotY": 269.999847,
"rotZ": 0.0158994682,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrivelling",
"Description": "",
"GMNotes": "{\n \"id\": \"01060\",\n \"alternate_ids\": [ \"01560\" ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"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": 230328,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a82e63",
"Name": "Card",
"Transform": {
"posX": 17.0496254,
"posY": 1.5210346,
"posZ": 71.44119,
"rotX": 0.0207734779,
"rotY": 269.999725,
"rotZ": 0.0144303907,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Open Gate",
"Description": "",
"GMNotes": "{\n \"id\": \"06029\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 444024,
"SidewaysCard": false,
"CustomDeck": {
"4440": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "585a56",
"Name": "Card",
"Transform": {
"posX": 16.9334183,
"posY": 1.39787936,
"posZ": 70.30701,
"rotX": 0.0217222031,
"rotY": 270.0,
"rotZ": 0.0159005746,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrivelling",
"Description": "",
"GMNotes": "{\n \"id\": \"01060\",\n \"alternate_ids\": [ \"01560\" ],\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}",
"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": 230328,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5c7b6",
"Name": "Card",
"Transform": {
"posX": 16.6865654,
"posY": 1.28857708,
"posZ": 70.830864,
"rotX": 0.021518277,
"rotY": 270.000031,
"rotZ": 0.0120722782,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Secrets",
"Description": "",
"GMNotes": "{\n \"id\": \"05116\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"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": 277604,
"SidewaysCard": false,
"CustomDeck": {
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c36b49",
"Name": "Card",
"Transform": {
"posX": 17.5918255,
"posY": 1.60569322,
"posZ": 70.3452759,
"rotX": 0.020397095,
"rotY": 270.000061,
"rotZ": 0.0163833424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraptured",
"Description": "",
"GMNotes": "{\n \"id\": \"04157\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230301,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "61d763",
"Name": "Card",
"Transform": {
"posX": 16.6248741,
"posY": 1.50831139,
"posZ": 71.07624,
"rotX": 0.02066896,
"rotY": 269.999847,
"rotZ": 0.0165783949,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hypnotic Gaze",
"Description": "",
"GMNotes": "{\n \"id\": \"02153\",\n \"alternate_ids\": [ \"60414\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230313,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0719f",
"Name": "Card",
"Transform": {
"posX": 16.6255322,
"posY": 1.740107,
"posZ": 71.37635,
"rotX": 359.971222,
"rotY": 270.039825,
"rotZ": 351.7935,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guts",
"Description": "",
"GMNotes": "{\n \"id\": \"01089\",\n \"alternate_ids\": [ \"01589\" ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368500,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d10780",
"Name": "Card",
"Transform": {
"posX": 17.070612,
"posY": 1.63628435,
"posZ": 71.42582,
"rotX": 0.0208640173,
"rotY": 269.999817,
"rotZ": 0.0154309431,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Cache",
"Description": "",
"GMNotes": "{\n \"id\": \"01088\",\n \"alternate_ids\": [ \"01588\" ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368509,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6a992f",
"Name": "Card",
"Transform": {
"posX": 16.6651783,
"posY": 1.33228338,
"posZ": 70.8305,
"rotX": 0.0350598134,
"rotY": 270.000061,
"rotZ": 0.009160239,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Secrets",
"Description": "",
"GMNotes": "{\n \"id\": \"05116\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"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": 277604,
"SidewaysCard": false,
"CustomDeck": {
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c1def9",
"Name": "Card",
"Transform": {
"posX": 17.5918274,
"posY": 1.61693108,
"posZ": 70.3452759,
"rotX": 0.0204409752,
"rotY": 270.000061,
"rotZ": 0.0164388549,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraptured",
"Description": "",
"GMNotes": "{\n \"id\": \"04157\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230301,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b54b55",
"Name": "Card",
"Transform": {
"posX": 16.2673569,
"posY": 1.38300931,
"posZ": 70.58469,
"rotX": 0.0213022716,
"rotY": 270.000061,
"rotZ": 0.0153187541,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Clairvoyance",
"Description": "",
"GMNotes": "{\n \"id\": \"60408\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"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": 538706,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "71b2a9",
"Name": "Card",
"Transform": {
"posX": 16.8104038,
"posY": 1.5740819,
"posZ": 71.0255661,
"rotX": 0.0210177917,
"rotY": 270.0,
"rotZ": 0.0165688619,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Voice of Ra",
"Description": "",
"GMNotes": "{\n \"id\": \"60416\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538714,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "338e34",
"Name": "Card",
"Transform": {
"posX": 16.958477,
"posY": 1.62069607,
"posZ": 70.97727,
"rotX": 0.02126748,
"rotY": 270.0,
"rotZ": 0.01640736,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Promise of Power",
"Description": "",
"GMNotes": "{\n \"id\": \"07032\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 584926,
"SidewaysCard": false,
"CustomDeck": {
"5849": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ae798",
"Name": "Card",
"Transform": {
"posX": 16.8150768,
"posY": 1.45994008,
"posZ": 70.65514,
"rotX": 0.0211179946,
"rotY": 270.000031,
"rotZ": 0.0164115913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Robes of Endless Night",
"Description": "",
"GMNotes": "{\n \"id\": \"60412\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538710,
"SidewaysCard": false,
"CustomDeck": {
"5387": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297472038/B38A78EF27EBE0BDE1B36958D297701505AB936A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "51c3d9",
"Name": "Deck",
"Transform": {
"posX": -26.3002052,
"posY": 3.41608334,
"posZ": -76.9456558,
"rotX": 0.0123678232,
"rotY": 270.000061,
"rotZ": 179.977066,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doll 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": [
379616,
379615,
379614,
379613,
379612,
379611,
379610
],
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "432eaf",
"Name": "Card",
"Transform": {
"posX": -46.9004822,
"posY": 1.30038011,
"posZ": -75.13831,
"rotX": 0.02097501,
"rotY": 270.000122,
"rotZ": 0.0156458486,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Striking French Dolls",
"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": 379616,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "111e88",
"Name": "Card",
"Transform": {
"posX": -47.20803,
"posY": 1.35112154,
"posZ": -75.22211,
"rotX": 0.0240375567,
"rotY": 270.000122,
"rotZ": 0.0160735175,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Soothing Hourai Dolls",
"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": 379615,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "72b597",
"Name": "Card",
"Transform": {
"posX": -46.89235,
"posY": 1.3852309,
"posZ": -75.11629,
"rotX": 0.0212478619,
"rotY": 270.000031,
"rotZ": 0.0165515,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shadowy London Dolls",
"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": 379614,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0fc4a",
"Name": "Card",
"Transform": {
"posX": -47.0649376,
"posY": 1.394891,
"posZ": -74.7482452,
"rotX": 0.0206720643,
"rotY": 270.000153,
"rotZ": 0.0163496528,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Luminous Shanghai Dolls",
"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": 379613,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "27febd",
"Name": "Card",
"Transform": {
"posX": -46.6821022,
"posY": 1.40461683,
"posZ": -74.9244156,
"rotX": 0.02098482,
"rotY": 270.016418,
"rotZ": 0.016561022,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Explosive Tibetan Dolls",
"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": 379612,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3df858",
"Name": "Card",
"Transform": {
"posX": -46.3845,
"posY": 1.41423178,
"posZ": -75.28549,
"rotX": 0.0209501423,
"rotY": 269.989624,
"rotZ": 0.0164819155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deductive Holland Dolls",
"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": 379611,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ad937",
"Name": "Card",
"Transform": {
"posX": -46.8760757,
"posY": 1.42380691,
"posZ": -74.8805542,
"rotX": 0.0210432187,
"rotY": 270.002441,
"rotZ": 0.0164522845,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Goliath Doll",
"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": 379610,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c9f540",
"Name": "Card",
"Transform": {
"posX": -26.3002071,
"posY": 3.37372279,
"posZ": -76.9456558,
"rotX": 0.020795403,
"rotY": 269.995422,
"rotZ": 0.016749518,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Medicine Melancholy",
"Description": "Weakness",
"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": 379609,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea9fc0",
"Name": "Deck",
"Transform": {
"posX": -26.3002071,
"posY": 3.40029216,
"posZ": -76.9456558,
"rotX": 0.020599138,
"rotY": 269.990051,
"rotZ": 0.0166824926,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doll Magic",
"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": [
379608,
379608,
379608,
379608
],
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d9efac",
"Name": "Card",
"Transform": {
"posX": -46.73972,
"posY": 1.30624378,
"posZ": -54.29379,
"rotX": 0.024121264,
"rotY": 269.9902,
"rotZ": -0.00423417147,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doll Magic",
"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": 379608,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "65a444",
"Name": "Card",
"Transform": {
"posX": -46.5693741,
"posY": 1.33406043,
"posZ": -54.14238,
"rotX": 0.3658095,
"rotY": 269.988373,
"rotZ": 359.566345,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doll Magic",
"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": 379608,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d9efac",
"Name": "Card",
"Transform": {
"posX": -46.5692749,
"posY": 1.38748622,
"posZ": -54.1424942,
"rotX": 0.0204202458,
"rotY": 269.990784,
"rotZ": 0.0157608017,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doll Magic",
"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": 379608,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f3b2df",
"Name": "Card",
"Transform": {
"posX": -41.6021957,
"posY": 1.3970952,
"posZ": -73.85747,
"rotX": 0.0202428009,
"rotY": 269.990143,
"rotZ": 0.0177237857,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Doll Magic",
"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": 379608,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "768f18",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -26.2995815,
"posY": 1.26647675,
"posZ": -84.8179855,
"rotX": 359.979156,
"rotY": 90.0006561,
"rotZ": 359.983215,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Signature Cards and Starter Deck",
"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": "1ea046",
"Name": "Deck",
"Transform": {
"posX": -22.2754631,
"posY": 3.31991458,
"posZ": -95.33352,
"rotX": 0.0208094381,
"rotY": 269.9985,
"rotZ": 0.0167706981,
"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": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
277910,
368832,
226319,
378932,
226302,
545315,
545315,
368830,
368807,
368802,
368830,
550803,
277910,
368802,
368805,
368810,
368816,
368515,
226302,
368832,
368807,
368823,
368515,
378932,
368823,
368810,
379827,
550803,
379827,
368816
],
"CustomDeck": {
"2779": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "fac1e8",
"Name": "Card",
"Transform": {
"posX": 28.1180019,
"posY": 1.4652245,
"posZ": 77.72895,
"rotX": 0.02094535,
"rotY": 270.000031,
"rotZ": 0.0162170455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawing Thin",
"Description": "",
"GMNotes": "{\n \"id\": \"05159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 277910,
"SidewaysCard": false,
"CustomDeck": {
"2779": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6cdb9",
"Name": "Card",
"Transform": {
"posX": 27.1023045,
"posY": 1.43583584,
"posZ": 77.62922,
"rotX": 0.0210388489,
"rotY": 270.0,
"rotZ": 0.0156624876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Peter Sylvestre",
"Description": "Big Man on Campus",
"GMNotes": "{\n \"id\": \"02033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368832,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c52f94",
"Name": "Card",
"Transform": {
"posX": 28.0314026,
"posY": 1.54271364,
"posZ": 77.8508453,
"rotX": 0.0217335951,
"rotY": 269.999878,
"rotZ": 0.0160516966,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dynamite Blast",
"Description": "",
"GMNotes": "{\n \"id\": \"01024\",\n \"alternate_ids\": [ \"01524\" ],\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 226319,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "decafb",
"Name": "Card",
"Transform": {
"posX": 27.6131611,
"posY": 1.388242,
"posZ": 77.04172,
"rotX": 0.0214228183,
"rotY": 270.0,
"rotZ": 0.0179018676,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sledgehammer",
"Description": "",
"GMNotes": "{\n \"id\": \"08094\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 378932,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "70e807",
"Name": "Card",
"Transform": {
"posX": 27.050127,
"posY": 1.58762634,
"posZ": 78.58681,
"rotX": 0.0214055143,
"rotY": 270.0,
"rotZ": 0.0139399031,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Blow",
"Description": "",
"GMNotes": "{\n \"id\": \"01025\",\n \"alternate_ids\": [ \"60119\", \"01525\" ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 226302,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5a76d7",
"Name": "Card",
"Transform": {
"posX": 27.3551331,
"posY": 1.636724,
"posZ": 77.6604843,
"rotX": 0.0207835045,
"rotY": 270.000061,
"rotZ": 0.0166406054,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "One-Two Punch",
"Description": "",
"GMNotes": "{\n \"id\": \"60117\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 545315,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f1440",
"Name": "Card",
"Transform": {
"posX": 27.3577061,
"posY": 1.6186409,
"posZ": 77.66049,
"rotX": 0.020745052,
"rotY": 270.000061,
"rotZ": 0.0164401419,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "One-Two Punch",
"Description": "",
"GMNotes": "{\n \"id\": \"60117\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 545315,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e3344",
"Name": "Card",
"Transform": {
"posX": 27.4597855,
"posY": 1.37457061,
"posZ": 77.77412,
"rotX": 0.0220454875,
"rotY": 270.0,
"rotZ": 0.0152615812,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Baseball Bat",
"Description": "",
"GMNotes": "{\n \"id\": \"01074\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368830,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "312986",
"Name": "Card",
"Transform": {
"posX": 27.6822319,
"posY": 1.49545813,
"posZ": 77.35148,
"rotX": 0.02127715,
"rotY": 270.0,
"rotZ": 0.0162270777,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Live and Learn",
"Description": "",
"GMNotes": "{\n \"id\": \"04200\",\n \"alternate_ids\": [ \"60516\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368807,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33007f",
"Name": "Card",
"Transform": {
"posX": 26.8884583,
"posY": 1.52016366,
"posZ": 77.52348,
"rotX": 0.0214963574,
"rotY": 270.0,
"rotZ": 0.0153553914,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Resourceful",
"Description": "",
"GMNotes": "{\n \"id\": \"03039\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368802,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ac6b4",
"Name": "Card",
"Transform": {
"posX": 27.459507,
"posY": 1.389077,
"posZ": 77.80075,
"rotX": 0.0214369521,
"rotY": 270.0,
"rotZ": 0.01647681,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Baseball Bat",
"Description": "",
"GMNotes": "{\n \"id\": \"01074\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368830,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "faf6ff",
"Name": "Card",
"Transform": {
"posX": 27.3686943,
"posY": 1.32026768,
"posZ": 77.79028,
"rotX": 0.0438393578,
"rotY": 270.000641,
"rotZ": 359.1436,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".18 Derringer",
"Description": "",
"GMNotes": "{\n \"id\": \"60505\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}",
"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": 550803,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8cb568",
"Name": "Card",
"Transform": {
"posX": 28.11752,
"posY": 1.45753825,
"posZ": 77.75541,
"rotX": 0.02090293,
"rotY": 270.000031,
"rotZ": 0.0163814537,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawing Thin",
"Description": "",
"GMNotes": "{\n \"id\": \"05159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 277910,
"SidewaysCard": false,
"CustomDeck": {
"2779": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "27504c",
"Name": "Card",
"Transform": {
"posX": 26.8881969,
"posY": 1.53763783,
"posZ": 77.54931,
"rotX": 0.02122223,
"rotY": 270.0,
"rotZ": 0.0159432217,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Resourceful",
"Description": "",
"GMNotes": "{\n \"id\": \"03039\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368802,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7c10e9",
"Name": "Card",
"Transform": {
"posX": 27.4954357,
"posY": 1.53556967,
"posZ": 77.72049,
"rotX": 0.0221779272,
"rotY": 269.9997,
"rotZ": 0.0152667873,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stunning Blow",
"Description": "",
"GMNotes": "{\n \"id\": \"04112\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368805,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7386e0",
"Name": "Card",
"Transform": {
"posX": 27.873558,
"posY": 1.50290024,
"posZ": 77.65318,
"rotX": 0.0213386472,
"rotY": 270.0,
"rotZ": 0.0158211756,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky!",
"Description": "",
"GMNotes": "{\n \"id\": \"01080\",\n \"alternate_ids\": [ \"01580\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368810,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "80cd2e",
"Name": "Card",
"Transform": {
"posX": 26.6332817,
"posY": 1.47627771,
"posZ": 77.3554153,
"rotX": 0.0224515125,
"rotY": 270.000031,
"rotZ": 0.0182659384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Look what I found!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"01079\",\n \"alternate_ids\": [ \"60517\", \"01579\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368816,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35d44f",
"Name": "Card",
"Transform": {
"posX": 27.2338734,
"posY": 1.60998428,
"posZ": 77.60657,
"rotX": 0.0208057519,
"rotY": 270.0,
"rotZ": 0.016501274,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flashlight",
"Description": "",
"GMNotes": "{\n \"id\": \"01087\",\n \"alternate_ids\": [ \"01587\" ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"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": 368515,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91d475",
"Name": "Card",
"Transform": {
"posX": 27.0501251,
"posY": 1.5953151,
"posZ": 78.58681,
"rotX": 0.0215392429,
"rotY": 270.0,
"rotZ": 0.0133142369,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Blow",
"Description": "",
"GMNotes": "{\n \"id\": \"01025\",\n \"alternate_ids\": [ \"60119\", \"01525\" ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 226302,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b53e0",
"Name": "Card",
"Transform": {
"posX": 27.10233,
"posY": 1.42022729,
"posZ": 77.6292343,
"rotX": 0.0211605765,
"rotY": 269.999939,
"rotZ": 0.0152948145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Peter Sylvestre",
"Description": "Big Man on Campus",
"GMNotes": "{\n \"id\": \"02033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368832,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "27cf17",
"Name": "Card",
"Transform": {
"posX": 27.6829052,
"posY": 1.48746467,
"posZ": 77.29804,
"rotX": 0.021217756,
"rotY": 270.0,
"rotZ": 0.0163231231,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Live and Learn",
"Description": "",
"GMNotes": "{\n \"id\": \"04200\",\n \"alternate_ids\": [ \"60516\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368807,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97ed8e",
"Name": "Card",
"Transform": {
"posX": 27.9229641,
"posY": 1.41251814,
"posZ": 77.60915,
"rotX": 0.0215562135,
"rotY": 270.000031,
"rotZ": 0.0152571034,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rabbit's Foot",
"Description": "",
"GMNotes": "{\n \"id\": \"01075\",\n \"alternate_ids\": [ \"60510\", \"01575\" ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368823,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2711af",
"Name": "Card",
"Transform": {
"posX": 27.2338772,
"posY": 1.60228193,
"posZ": 77.60657,
"rotX": 0.0208058469,
"rotY": 270.0,
"rotZ": 0.01651239,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flashlight",
"Description": "",
"GMNotes": "{\n \"id\": \"01087\",\n \"alternate_ids\": [ \"01587\" ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}",
"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": 368515,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ade14d",
"Name": "Card",
"Transform": {
"posX": 27.5887222,
"posY": 1.40992379,
"posZ": 77.0662,
"rotX": 0.02094972,
"rotY": 270.0,
"rotZ": 0.01692328,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sledgehammer",
"Description": "",
"GMNotes": "{\n \"id\": \"08094\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 378932,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b01841",
"Name": "Card",
"Transform": {
"posX": 27.9229679,
"posY": 1.404819,
"posZ": 77.60915,
"rotX": 0.0215042047,
"rotY": 270.000031,
"rotZ": 0.0153508084,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rabbit's Foot",
"Description": "",
"GMNotes": "{\n \"id\": \"01075\",\n \"alternate_ids\": [ \"60510\", \"01575\" ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368823,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "894346",
"Name": "Card",
"Transform": {
"posX": 27.8735752,
"posY": 1.52457416,
"posZ": 77.6532,
"rotX": 0.0209331252,
"rotY": 270.0,
"rotZ": 0.0165639725,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky!",
"Description": "",
"GMNotes": "{\n \"id\": \"01080\",\n \"alternate_ids\": [ \"01580\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368810,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7d3a3a",
"Name": "Card",
"Transform": {
"posX": 27.716116,
"posY": 1.55200219,
"posZ": 77.72883,
"rotX": 0.02184018,
"rotY": 269.9998,
"rotZ": 0.0154521912,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daring",
"Description": "",
"GMNotes": "{\n \"id\": \"06111\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 379827,
"SidewaysCard": false,
"CustomDeck": {
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f8f60",
"Name": "Card",
"Transform": {
"posX": 27.4122181,
"posY": 1.29451942,
"posZ": 77.7909,
"rotX": 0.0223920643,
"rotY": 269.999084,
"rotZ": 0.0115512162,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".18 Derringer",
"Description": "",
"GMNotes": "{\n \"id\": \"60505\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}",
"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": 550803,
"SidewaysCard": false,
"CustomDeck": {
"5508": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b7dfe8",
"Name": "Card",
"Transform": {
"posX": 27.716795,
"posY": 1.56801164,
"posZ": 77.67228,
"rotX": 0.0214124974,
"rotY": 270.000031,
"rotZ": 0.015911663,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daring",
"Description": "",
"GMNotes": "{\n \"id\": \"06111\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 379827,
"SidewaysCard": false,
"CustomDeck": {
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5a6abe",
"Name": "Card",
"Transform": {
"posX": 26.6095581,
"posY": 1.47398484,
"posZ": 77.3776855,
"rotX": 0.021648705,
"rotY": 270.000031,
"rotZ": 0.017323086,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Look what I found!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"01079\",\n \"alternate_ids\": [ \"60517\", \"01579\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368816,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ffdecb",
"Name": "Deck",
"Transform": {
"posX": -26.2996159,
"posY": 3.40304732,
"posZ": -84.81801,
"rotX": 0.0205925275,
"rotY": 270.000366,
"rotZ": 0.0166854728,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Weight of 1300 Years",
"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": [
379619,
379619,
379619,
379619,
379619
],
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d3e12c",
"Name": "Card",
"Transform": {
"posX": -40.19741,
"posY": 1.2988081,
"posZ": -88.86502,
"rotX": 0.0208658446,
"rotY": 270.0003,
"rotZ": 0.0164063089,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Weight of 1300 Years",
"Description": "Weakness",
"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": 379619,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d77cc",
"Name": "Card",
"Transform": {
"posX": -40.4054,
"posY": 1.35083437,
"posZ": -88.98017,
"rotX": 0.02106845,
"rotY": 270.0003,
"rotZ": 0.0143161649,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Weight of 1300 Years",
"Description": "Weakness",
"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": 379619,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d3e12c",
"Name": "Card",
"Transform": {
"posX": -40.40541,
"posY": 1.37798262,
"posZ": -88.98019,
"rotX": 0.0208681151,
"rotY": 270.0003,
"rotZ": 0.01595146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Weight of 1300 Years",
"Description": "Weakness",
"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": 379619,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "374f6b",
"Name": "Card",
"Transform": {
"posX": -40.40541,
"posY": 1.385684,
"posZ": -88.98019,
"rotX": 0.0208741315,
"rotY": 270.0003,
"rotZ": 0.0158486478,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Weight of 1300 Years",
"Description": "Weakness",
"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": 379619,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "39f5d6",
"Name": "Card",
"Transform": {
"posX": -40.4054146,
"posY": 1.39338541,
"posZ": -88.98019,
"rotX": 0.0208811127,
"rotY": 270.0003,
"rotZ": 0.01575091,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Weight of 1300 Years",
"Description": "Weakness",
"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": 379619,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "784254",
"Name": "Deck",
"Transform": {
"posX": -26.2996159,
"posY": 3.402807,
"posZ": -84.81801,
"rotX": 0.0205886085,
"rotY": 270.000244,
"rotZ": 0.0166841745,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Phoenix Rebirth",
"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": [
379618,
379618,
379618,
379618,
379618
],
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "81ccde",
"Name": "Card",
"Transform": {
"posX": -55.19217,
"posY": 1.30163431,
"posZ": -60.5977859,
"rotX": 0.020889014,
"rotY": 270.000153,
"rotZ": 0.0162546728,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Phoenix Rebirth",
"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": 379618,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "19c7be",
"Name": "Card",
"Transform": {
"posX": -55.3778,
"posY": 1.352454,
"posZ": -60.38967,
"rotX": 0.0239465311,
"rotY": 269.999054,
"rotZ": 0.0124158766,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Phoenix Rebirth",
"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": 379618,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "81ccde",
"Name": "Card",
"Transform": {
"posX": -55.2994156,
"posY": 1.38145828,
"posZ": -60.4830971,
"rotX": 0.0200457647,
"rotY": 270.000122,
"rotZ": 0.01612616,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Phoenix Rebirth",
"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": 379618,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3fc827",
"Name": "Card",
"Transform": {
"posX": -55.2994843,
"posY": 1.38915586,
"posZ": -60.48296,
"rotX": 0.0199252516,
"rotY": 270.000122,
"rotZ": 0.0160251316,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Phoenix Rebirth",
"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": 379618,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "81ccde",
"Name": "Card",
"Transform": {
"posX": -55.2994881,
"posY": 1.3968538,
"posZ": -60.4829636,
"rotX": 0.0198123287,
"rotY": 270.000122,
"rotZ": 0.015932288,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Phoenix Rebirth",
"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": 379618,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "df5ed6",
"Name": "Card",
"Transform": {
"posX": -26.2996159,
"posY": 3.371426,
"posZ": -84.81801,
"rotX": 0.0207939,
"rotY": 270.000244,
"rotZ": 0.0167513918,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hourai Elixir",
"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": 379617,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "78041d",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -26.3001347,
"posY": 1.273378,
"posZ": -61.24096,
"rotX": 359.979156,
"rotY": 89.99187,
"rotZ": 359.983246,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Signature Cards and Starter Deck",
"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": "d5cbaf",
"Name": "Deck",
"Transform": {
"posX": 0.309053719,
"posY": 2.99102283,
"posZ": -119.108757,
"rotX": 0.0208105836,
"rotY": 269.9996,
"rotZ": 0.0167698134,
"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": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
549300,
580315,
580315,
368506,
368432,
368400,
277604,
368401,
538806,
538803,
584926,
378946,
378946,
549300,
538812,
368402,
538803,
368402,
368432,
230308,
368429,
368506,
538812,
584926,
368400,
368509,
368509,
230308,
368518,
368429
],
"CustomDeck": {
"5493": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1537373727958826520/EE54EF6510734FC86ADD47E84DB253493A2F87B7/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5803": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5849": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "cd1d69",
"Name": "CardCustom",
"Transform": {
"posX": 23.7074528,
"posY": 1.41648555,
"posZ": 73.9464,
"rotX": 0.022392625,
"rotY": 269.999847,
"rotZ": 0.0165633615,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eldritch Sophist",
"Description": "",
"GMNotes": "{\n \"id\": \"07111\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"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": 549300,
"SidewaysCard": false,
"CustomDeck": {
"5493": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1537373727958826520/EE54EF6510734FC86ADD47E84DB253493A2F87B7/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "db85ab",
"Name": "Card",
"Transform": {
"posX": 23.6407337,
"posY": 1.34439731,
"posZ": 74.5227661,
"rotX": 0.0188500844,
"rotY": 270.000031,
"rotZ": 0.0159255285,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptographic Cipher",
"Description": "",
"GMNotes": "{\n \"id\": \"07021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"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": 580315,
"SidewaysCard": false,
"CustomDeck": {
"5803": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91d372",
"Name": "Card",
"Transform": {
"posX": 23.6104736,
"posY": 1.29223955,
"posZ": 74.5542,
"rotX": 0.0209444109,
"rotY": 270.0,
"rotZ": 0.0159115754,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptographic Cipher",
"Description": "",
"GMNotes": "{\n \"id\": \"07021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"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": 580315,
"SidewaysCard": false,
"CustomDeck": {
"5803": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "667343",
"Name": "Card",
"Transform": {
"posX": 23.91181,
"posY": 1.61625361,
"posZ": 73.96902,
"rotX": 0.021129135,
"rotY": 270.0,
"rotZ": 0.0164583549,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Perception",
"Description": "",
"GMNotes": "{\n \"id\": \"01090\",\n \"alternate_ids\": [ \"01590\" ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368506,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "08d59b",
"Name": "Card",
"Transform": {
"posX": 23.4069672,
"posY": 1.40219808,
"posZ": 74.11906,
"rotX": 0.0207844265,
"rotY": 270.000031,
"rotZ": 0.01549717,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tooth of Eztli",
"Description": "Mortal Reminder",
"GMNotes": "{\n \"id\": \"04023\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368432,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f5d6e2",
"Name": "Card",
"Transform": {
"posX": 24.12898,
"posY": 1.503103,
"posZ": 74.34839,
"rotX": 0.0211766623,
"rotY": 269.999939,
"rotZ": 0.0160478484,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eureka!",
"Description": "",
"GMNotes": "{\n \"id\": \"03231\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368400,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6d58e",
"Name": "Card",
"Transform": {
"posX": 23.341217,
"posY": 1.37730086,
"posZ": 74.67071,
"rotX": 0.0199031252,
"rotY": 270.0,
"rotZ": 0.0158286653,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Secrets",
"Description": "",
"GMNotes": "{\n \"id\": \"05116\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"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": 277604,
"SidewaysCard": false,
"CustomDeck": {
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0536eb",
"Name": "Card",
"Transform": {
"posX": 23.5658054,
"posY": 1.51822889,
"posZ": 75.41873,
"rotX": 0.0236004516,
"rotY": 270.0,
"rotZ": -0.000176811183,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Inquiring Mind",
"Description": "",
"GMNotes": "{\n \"id\": \"02227\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368401,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ae13d1",
"Name": "Card",
"Transform": {
"posX": 23.28164,
"posY": 1.37026024,
"posZ": 74.698,
"rotX": 0.02012765,
"rotY": 270.0,
"rotZ": 0.015883049,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encyclopedia",
"Description": "",
"GMNotes": "{\n \"id\": \"60208\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 5\n }\n}",
"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": 538806,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "48d690",
"Name": "Card",
"Transform": {
"posX": 24.2153034,
"posY": 1.39697564,
"posZ": 74.385025,
"rotX": 0.0213105064,
"rotY": 270.0,
"rotZ": 0.0154390642,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Enlightenment",
"Description": "",
"GMNotes": "{\n \"id\": \"60205\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538803,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "54f169",
"Name": "Card",
"Transform": {
"posX": 24.26376,
"posY": 1.58089054,
"posZ": 74.0597458,
"rotX": 0.02091157,
"rotY": 270.0,
"rotZ": 0.0163562316,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Promise of Power",
"Description": "",
"GMNotes": "{\n \"id\": \"07032\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 584926,
"SidewaysCard": false,
"CustomDeck": {
"5849": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "695a7b",
"Name": "Card",
"Transform": {
"posX": 23.46809,
"posY": 1.52488744,
"posZ": 74.7184753,
"rotX": 0.02008694,
"rotY": 270.0,
"rotZ": 0.0160789359,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ethereal Slip",
"Description": "",
"GMNotes": "{\n \"id\": \"08108\",\n \"type\": \"Event\",\n \"class\": \"Rogue|Mystic\",\n \"traits\": \"Spell. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 378946,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35a9ff",
"Name": "Card",
"Transform": {
"posX": 23.3534088,
"posY": 1.53254235,
"posZ": 74.71733,
"rotX": 0.020105686,
"rotY": 269.999969,
"rotZ": 0.0160217229,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ethereal Slip",
"Description": "",
"GMNotes": "{\n \"id\": \"08108\",\n \"type\": \"Event\",\n \"class\": \"Rogue|Mystic\",\n \"traits\": \"Spell. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 378946,
"SidewaysCard": false,
"CustomDeck": {
"3789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f1ef0",
"Name": "CardCustom",
"Transform": {
"posX": 23.7078018,
"posY": 1.44582534,
"posZ": 73.9135361,
"rotX": 0.0210147947,
"rotY": 270.0,
"rotZ": 0.0167819839,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eldritch Sophist",
"Description": "",
"GMNotes": "{\n \"id\": \"07111\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}",
"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": 549300,
"SidewaysCard": false,
"CustomDeck": {
"5493": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1537373727958826520/EE54EF6510734FC86ADD47E84DB253493A2F87B7/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c1670",
"Name": "Card",
"Transform": {
"posX": 24.3417435,
"posY": 1.47174692,
"posZ": 73.9690247,
"rotX": 0.02072585,
"rotY": 270.0,
"rotZ": 0.0165178031,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burning the Midnight Oil",
"Description": "",
"GMNotes": "{\n \"id\": \"60214\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538812,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8d896b",
"Name": "Card",
"Transform": {
"posX": 24.3353863,
"posY": 1.48793149,
"posZ": 74.51565,
"rotX": 0.0210190658,
"rotY": 270.0,
"rotZ": 0.0158185344,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deduction",
"Description": "",
"GMNotes": "{\n \"id\": \"01039\",\n \"alternate_ids\": [ \"60219\" ],\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368402,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2881e6",
"Name": "Card",
"Transform": {
"posX": 24.2160149,
"posY": 1.38804531,
"posZ": 74.3188248,
"rotX": 0.0212157685,
"rotY": 270.0,
"rotZ": 0.0156652443,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Enlightenment",
"Description": "",
"GMNotes": "{\n \"id\": \"60205\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538803,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "730ce5",
"Name": "Card",
"Transform": {
"posX": 24.3121147,
"posY": 1.50370586,
"posZ": 74.5380554,
"rotX": 0.0208955724,
"rotY": 270.0,
"rotZ": 0.0164652,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deduction",
"Description": "",
"GMNotes": "{\n \"id\": \"01039\",\n \"alternate_ids\": [ \"60219\" ],\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368402,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f2cf2a",
"Name": "Card",
"Transform": {
"posX": 23.4069843,
"posY": 1.4245882,
"posZ": 74.11907,
"rotX": 0.0207999386,
"rotY": 270.000031,
"rotZ": 0.0164229963,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tooth of Eztli",
"Description": "Mortal Reminder",
"GMNotes": "{\n \"id\": \"04023\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368432,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c62576",
"Name": "Card",
"Transform": {
"posX": 23.64913,
"posY": 1.5406847,
"posZ": 74.0419846,
"rotX": 0.0220410116,
"rotY": 269.999817,
"rotZ": 0.01625343,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Protection",
"Description": "",
"GMNotes": "{\n \"id\": \"01065\",\n \"alternate_ids\": [ \"01565\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230308,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9790db",
"Name": "Card",
"Transform": {
"posX": 23.31392,
"posY": 1.45247924,
"posZ": 74.47171,
"rotX": 0.02105545,
"rotY": 270.0,
"rotZ": 0.0156222973,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fieldwork",
"Description": "",
"GMNotes": "{\n \"id\": \"03024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368429,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "72a5b8",
"Name": "Card",
"Transform": {
"posX": 23.8843117,
"posY": 1.61898613,
"posZ": 74.0272446,
"rotX": 0.0213731285,
"rotY": 269.999878,
"rotZ": 0.0164048858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Perception",
"Description": "",
"GMNotes": "{\n \"id\": \"01090\",\n \"alternate_ids\": [ \"01590\" ],\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368506,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f77442",
"Name": "Card",
"Transform": {
"posX": 24.34129,
"posY": 1.47945237,
"posZ": 74.00098,
"rotX": 0.0207388625,
"rotY": 270.0,
"rotZ": 0.0164225549,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burning the Midnight Oil",
"Description": "",
"GMNotes": "{\n \"id\": \"60214\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 538812,
"SidewaysCard": false,
"CustomDeck": {
"5388": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546381162227145538/0F253FC5301911273C32210992261DD1D2EBB578/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "884dc7",
"Name": "Card",
"Transform": {
"posX": 24.2637711,
"posY": 1.57804167,
"posZ": 74.05975,
"rotX": 0.0208504628,
"rotY": 270.0,
"rotZ": 0.0166030973,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Promise of Power",
"Description": "",
"GMNotes": "{\n \"id\": \"07032\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 584926,
"SidewaysCard": false,
"CustomDeck": {
"5849": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0a4dee",
"Name": "Card",
"Transform": {
"posX": 24.093708,
"posY": 1.505487,
"posZ": 74.34823,
"rotX": 0.0214710552,
"rotY": 269.999756,
"rotZ": 0.0158227943,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eureka!",
"Description": "",
"GMNotes": "{\n \"id\": \"03231\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368400,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ef7863",
"Name": "Card",
"Transform": {
"posX": 23.3036423,
"posY": 1.60114372,
"posZ": 75.28324,
"rotX": 0.0211924128,
"rotY": 270.000031,
"rotZ": 0.014069993,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Cache",
"Description": "",
"GMNotes": "{\n \"id\": \"01088\",\n \"alternate_ids\": [ \"01588\" ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368509,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "837413",
"Name": "Card",
"Transform": {
"posX": 23.3043423,
"posY": 1.61200392,
"posZ": 75.21807,
"rotX": 0.0209561959,
"rotY": 270.000031,
"rotZ": 0.015035863,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Cache",
"Description": "",
"GMNotes": "{\n \"id\": \"01088\",\n \"alternate_ids\": [ \"01588\" ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368509,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f0691",
"Name": "Card",
"Transform": {
"posX": 23.64911,
"posY": 1.55566883,
"posZ": 74.04196,
"rotX": 0.0216908939,
"rotY": 270.0,
"rotZ": 0.0163032431,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ward of Protection",
"Description": "",
"GMNotes": "{\n \"id\": \"01065\",\n \"alternate_ids\": [ \"01565\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 230308,
"SidewaysCard": false,
"CustomDeck": {
"2303": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cdf788",
"Name": "Card",
"Transform": {
"posX": 23.85519,
"posY": 1.59137177,
"posZ": 75.0326462,
"rotX": 0.0209582075,
"rotY": 270.000061,
"rotZ": 0.0160663724,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trench Coat",
"Description": "",
"GMNotes": "{\n \"id\": \"04203\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368518,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e8381",
"Name": "Card",
"Transform": {
"posX": 23.343565,
"posY": 1.45337725,
"posZ": 74.4742355,
"rotX": 0.0208714753,
"rotY": 270.0,
"rotZ": 0.0164110772,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fieldwork",
"Description": "",
"GMNotes": "{\n \"id\": \"03024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368429,
"SidewaysCard": false,
"CustomDeck": {
"3684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "13f2ee",
"Name": "Card",
"Transform": {
"posX": -26.3001671,
"posY": 3.37834072,
"posZ": -61.2409859,
"rotX": 0.0207957216,
"rotY": 269.99408,
"rotZ": 0.01674928,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Distraction",
"Description": "Weakness",
"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": 379604,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d1b3f",
"Name": "Card",
"Transform": {
"posX": -26.3001671,
"posY": 3.378336,
"posZ": -61.2409859,
"rotX": 0.02079575,
"rotY": 269.994019,
"rotZ": 0.0167491958,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chen",
"Description": "Black Cat of Bad Omens",
"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": 379603,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8d3616",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -26.3,
"posY": 1.27566218,
"posZ": -53.43684,
"rotX": 359.979156,
"rotY": 90.00001,
"rotZ": 359.983246,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Signature Cards and Starter Deck",
"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": "5db9a4",
"Name": "Deck",
"Transform": {
"posX": -7.956441,
"posY": 4.025799,
"posZ": -86.6858139,
"rotX": 0.0208170433,
"rotY": 269.9774,
"rotZ": 0.0167619456,
"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": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
368829,
545305,
277607,
368829,
379827,
261703,
277607,
261703,
226302,
368705,
368502,
368508,
261700,
368512,
368508,
226322,
368624,
368512,
261700,
379827,
368705,
226310,
368502,
545316,
226322,
368624,
545305,
545316,
226302,
226310
],
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4a504b",
"Name": "Card",
"Transform": {
"posX": 46.5429039,
"posY": 1.34346569,
"posZ": 44.80598,
"rotX": 0.0237318259,
"rotY": 270.000061,
"rotZ": 0.0153053282,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gravedigger's Shovel",
"Description": "",
"GMNotes": "{\n \"id\": \"03037\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368829,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22e6ac",
"Name": "Card",
"Transform": {
"posX": 46.19501,
"posY": 1.44609535,
"posZ": 43.9664421,
"rotX": 0.007881612,
"rotY": 270.010284,
"rotZ": 357.267426,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grete Wagner",
"Description": "The Purifier",
"GMNotes": "{\n \"id\": \"60107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 545305,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a8453",
"Name": "Card",
"Transform": {
"posX": 46.8358574,
"posY": 1.42415857,
"posZ": 44.94634,
"rotX": 0.0221391469,
"rotY": 269.999847,
"rotZ": 0.0157275256,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchanted Blade",
"Description": "",
"GMNotes": "{\n \"id\": \"05118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Guardian\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"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": 277607,
"SidewaysCard": false,
"CustomDeck": {
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "99fc45",
"Name": "Card",
"Transform": {
"posX": 46.542923,
"posY": 1.29185677,
"posZ": 44.806,
"rotX": 0.0209732074,
"rotY": 270.000031,
"rotZ": 0.015682919,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gravedigger's Shovel",
"Description": "",
"GMNotes": "{\n \"id\": \"03037\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368829,
"SidewaysCard": false,
"CustomDeck": {
"3688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "83b81e",
"Name": "Card",
"Transform": {
"posX": 46.399826,
"posY": 1.4902879,
"posZ": 44.50571,
"rotX": 0.0207471531,
"rotY": 270.000031,
"rotZ": 0.01625702,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daring",
"Description": "",
"GMNotes": "{\n \"id\": \"06111\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 379827,
"SidewaysCard": false,
"CustomDeck": {
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3ee3aa",
"Name": "Card",
"Transform": {
"posX": 46.584713,
"posY": 1.59503,
"posZ": 44.79099,
"rotX": 0.0213227365,
"rotY": 270.0,
"rotZ": 0.0161646158,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quick Thinking",
"Description": "",
"GMNotes": "{\n \"id\": \"02229\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 261703,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6f512",
"Name": "Card",
"Transform": {
"posX": 46.83586,
"posY": 1.41685987,
"posZ": 44.9463425,
"rotX": 0.0220228862,
"rotY": 269.999847,
"rotZ": 0.0158359166,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchanted Blade",
"Description": "",
"GMNotes": "{\n \"id\": \"05118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Guardian\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}",
"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": 277607,
"SidewaysCard": false,
"CustomDeck": {
"2776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb71ed",
"Name": "Card",
"Transform": {
"posX": 46.5853348,
"posY": 1.58473516,
"posZ": 44.76854,
"rotX": 0.021302782,
"rotY": 270.0,
"rotZ": 0.0162030235,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quick Thinking",
"Description": "",
"GMNotes": "{\n \"id\": \"02229\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 261703,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bbb46d",
"Name": "Card",
"Transform": {
"posX": 46.5846939,
"posY": 1.50201833,
"posZ": 44.6205521,
"rotX": 0.0216604974,
"rotY": 270.0,
"rotZ": 0.0158628523,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Blow",
"Description": "",
"GMNotes": "{\n \"id\": \"01025\",\n \"alternate_ids\": [ \"60119\", \"01525\" ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 226302,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "acf687",
"Name": "Card",
"Transform": {
"posX": 46.5524139,
"posY": 1.53293049,
"posZ": 44.47858,
"rotX": 0.0219989549,
"rotY": 269.999756,
"rotZ": 0.0159121212,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"You handle this one!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"04028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368705,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2b42be",
"Name": "Card",
"Transform": {
"posX": 46.6626167,
"posY": 1.6267786,
"posZ": 44.2519836,
"rotX": 0.0212639142,
"rotY": 270.0,
"rotZ": 0.0165143348,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overpower",
"Description": "",
"GMNotes": "{\n \"id\": \"01091\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368502,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0136d7",
"Name": "Card",
"Transform": {
"posX": 46.6161232,
"posY": 1.61497116,
"posZ": 45.2896423,
"rotX": 0.02093186,
"rotY": 270.0,
"rotZ": 0.01621798,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexpected Courage",
"Description": "",
"GMNotes": "{\n \"id\": \"01093\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368508,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9dd5a9",
"Name": "Card",
"Transform": {
"posX": 46.8248024,
"posY": 1.54935217,
"posZ": 44.9445724,
"rotX": 0.0217071362,
"rotY": 269.999847,
"rotZ": 0.0161629021,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Watch this!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"03233\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 261700,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "246002",
"Name": "Card",
"Transform": {
"posX": 47.0360832,
"posY": 1.37168646,
"posZ": 45.079998,
"rotX": 0.0191461053,
"rotY": 270.0,
"rotZ": 0.0139356423,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Knife",
"Description": "",
"GMNotes": "{\n \"id\": \"01086\",\n \"alternate_ids\": [ \"01586\" ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368512,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e46fc4",
"Name": "Card",
"Transform": {
"posX": 46.6161156,
"posY": 1.60016131,
"posZ": 45.28964,
"rotX": 0.02103653,
"rotY": 270.0,
"rotZ": 0.0157583524,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexpected Courage",
"Description": "",
"GMNotes": "{\n \"id\": \"01093\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368508,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ead3ec",
"Name": "Card",
"Transform": {
"posX": 46.4912529,
"posY": 1.406576,
"posZ": 44.90503,
"rotX": 0.0204875749,
"rotY": 270.0,
"rotZ": 0.0165307485,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Survival Knife",
"Description": "",
"GMNotes": "{\n \"id\": \"04017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 226322,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "888cbc",
"Name": "Card",
"Transform": {
"posX": 46.85524,
"posY": 1.51672506,
"posZ": 45.3492546,
"rotX": 0.020938389,
"rotY": 270.0,
"rotZ": 0.014980291,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky Cigarette Case",
"Description": "",
"GMNotes": "{\n \"id\": \"04107\",\n \"alternate_ids\": [ \"60308\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368624,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed82b7",
"Name": "Card",
"Transform": {
"posX": 46.9973946,
"posY": 1.37940323,
"posZ": 45.0912857,
"rotX": 0.0212217122,
"rotY": 270.0,
"rotZ": 0.0159371365,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Knife",
"Description": "",
"GMNotes": "{\n \"id\": \"01086\",\n \"alternate_ids\": [ \"01586\" ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368512,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "428602",
"Name": "Card",
"Transform": {
"posX": 46.8248672,
"posY": 1.5739603,
"posZ": 44.97015,
"rotX": 0.0211064145,
"rotY": 270.000031,
"rotZ": 0.0165020023,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Watch this!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"03233\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 261700,
"SidewaysCard": false,
"CustomDeck": {
"2617": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "624962",
"Name": "Card",
"Transform": {
"posX": 46.3995323,
"posY": 1.48748624,
"posZ": 44.5353241,
"rotX": 0.0207790174,
"rotY": 270.000031,
"rotZ": 0.0164810084,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daring",
"Description": "",
"GMNotes": "{\n \"id\": \"06111\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 379827,
"SidewaysCard": false,
"CustomDeck": {
"3798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "992c19",
"Name": "Card",
"Transform": {
"posX": 46.5521469,
"posY": 1.55675852,
"posZ": 44.46949,
"rotX": 0.0211734958,
"rotY": 270.0,
"rotZ": 0.0164556541,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"You handle this one!\"",
"Description": "",
"GMNotes": "{\n \"id\": \"04028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368705,
"SidewaysCard": false,
"CustomDeck": {
"3687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b1a297",
"Name": "Card",
"Transform": {
"posX": 46.56929,
"posY": 1.44959211,
"posZ": 45.27246,
"rotX": 0.021511944,
"rotY": 270.0,
"rotZ": 0.01395528,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prepared for the Worst",
"Description": "",
"GMNotes": "{\n \"id\": \"02184\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 226310,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7efd39",
"Name": "Card",
"Transform": {
"posX": 46.7304764,
"posY": 1.61599517,
"posZ": 44.3010254,
"rotX": 0.0212059617,
"rotY": 270.0,
"rotZ": 0.0164237637,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overpower",
"Description": "",
"GMNotes": "{\n \"id\": \"01091\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368502,
"SidewaysCard": false,
"CustomDeck": {
"3685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5cb32f",
"Name": "Card",
"Transform": {
"posX": 47.0217361,
"posY": 1.480887,
"posZ": 45.12036,
"rotX": 0.0209693648,
"rotY": 270.0,
"rotZ": 0.0163985919,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stand Together",
"Description": "",
"GMNotes": "{\n \"id\": \"60118\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 545316,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cfb0f7",
"Name": "Card",
"Transform": {
"posX": 46.6289444,
"posY": 1.38542342,
"posZ": 44.8927269,
"rotX": 0.0222447962,
"rotY": 270.0,
"rotZ": 0.01579556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Survival Knife",
"Description": "",
"GMNotes": "{\n \"id\": \"04017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 226322,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f47707",
"Name": "Card",
"Transform": {
"posX": 46.82136,
"posY": 1.53937042,
"posZ": 45.26148,
"rotX": 0.02090339,
"rotY": 270.0,
"rotZ": 0.01637118,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky Cigarette Case",
"Description": "",
"GMNotes": "{\n \"id\": \"04107\",\n \"alternate_ids\": [ \"60308\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 368624,
"SidewaysCard": false,
"CustomDeck": {
"3686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0eb2a5",
"Name": "Card",
"Transform": {
"posX": 45.95313,
"posY": 1.40795553,
"posZ": 44.36183,
"rotX": 0.0225299485,
"rotY": 269.999939,
"rotZ": 0.0139532723,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grete Wagner",
"Description": "The Purifier",
"GMNotes": "{\n \"id\": \"60107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 545305,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "031e02",
"Name": "Card",
"Transform": {
"posX": 46.9892,
"posY": 1.471283,
"posZ": 45.13156,
"rotX": 0.0209598038,
"rotY": 270.0,
"rotZ": 0.0164258983,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stand Together",
"Description": "",
"GMNotes": "{\n \"id\": \"60118\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 545316,
"SidewaysCard": false,
"CustomDeck": {
"5453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1546380927206250326/18BF6D2B2BBFDDBE5B021A46C310E4F45493EC26/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d9d652",
"Name": "Card",
"Transform": {
"posX": 46.5850143,
"posY": 1.50971043,
"posZ": 44.59067,
"rotX": 0.0217112079,
"rotY": 270.0,
"rotZ": 0.0158264432,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Blow",
"Description": "",
"GMNotes": "{\n \"id\": \"01025\",\n \"alternate_ids\": [ \"60119\", \"01525\" ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 226302,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "435a21",
"Name": "Card",
"Transform": {
"posX": 46.6018333,
"posY": 1.43433964,
"posZ": 45.1997375,
"rotX": 0.0219079163,
"rotY": 269.9997,
"rotZ": 0.01414724,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prepared for the Worst",
"Description": "",
"GMNotes": "{\n \"id\": \"02184\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
"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": 226310,
"SidewaysCard": false,
"CustomDeck": {
"2263": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a04f66",
"Name": "Card",
"Transform": {
"posX": -26.3000317,
"posY": 3.380589,
"posZ": -53.43687,
"rotX": 0.0207958817,
"rotY": 269.994019,
"rotZ": 0.0167488083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Phasmaphobia",
"Description": "Weakness",
"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": 379602,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "26cc50",
"Name": "Card",
"Transform": {
"posX": -26.3000317,
"posY": 3.38058162,
"posZ": -53.43687,
"rotX": 0.02079605,
"rotY": 269.99408,
"rotZ": 0.0167488921,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hakurouken",
"Description": "Sword of Binding Desires",
"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": 379601,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8bcaa7",
"Name": "Card",
"Transform": {
"posX": -26.3000317,
"posY": 3.380573,
"posZ": -53.43687,
"rotX": 0.0207960363,
"rotY": 269.99408,
"rotZ": 0.0167486761,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Roukanken",
"Description": "Two Hundred Yojana in One Slash",
"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": 379600,
"SidewaysCard": false,
"CustomDeck": {
"3796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904307820/68C7642AA07162AFCB5BEE8AD9D20650353A35B4/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "96c54e",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6107559,
"posY": 1.363807,
"posZ": -54.5914345,
"rotX": 0.02081596,
"rotY": 270.000244,
"rotZ": 0.0167684574,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ae0475",
"Name": "Card",
"Transform": {
"posX": -19.29979,
"posY": 1.3075875,
"posZ": -84.8181839,
"rotX": 0.0208089463,
"rotY": 270.0,
"rotZ": 0.0167708024,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Fujiwara no Mokou",
"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": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 379704,
"SidewaysCard": false,
"CustomDeck": {
"3797": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904329658/CDE03457D765E04921700D604B48A8496619D223/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904330165/43E44FFECA42DF35E4E524E1BC639176C143B977/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b3c8c8",
"Name": "Card",
"Transform": {
"posX": -19.29588,
"posY": 1.31220138,
"posZ": -69.06071,
"rotX": 0.0208092686,
"rotY": 269.999084,
"rotZ": 0.0167706218,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Marisa Kirisame",
"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": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 379702,
"SidewaysCard": false,
"CustomDeck": {
"3797": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904329658/CDE03457D765E04921700D604B48A8496619D223/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904330165/43E44FFECA42DF35E4E524E1BC639176C143B977/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b7cf86",
"Name": "Card",
"Transform": {
"posX": -22.6169662,
"posY": 1.31328416,
"posZ": -61.24139,
"rotX": 0.01678019,
"rotY": 180.024521,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Ran Yakumo",
"Description": "The Shikigami",
"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": 379501,
"SidewaysCard": true,
"CustomDeck": {
"3795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904294967/B4D926C197E0AE17DD9C63E0F6DE5779BBCCABB1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904295790/8CF9198FDA65F0E54683DF9216C976F0AD09E48A/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3a097",
"Name": "Card",
"Transform": {
"posX": -19.2936115,
"posY": 1.3098954,
"posZ": -76.94155,
"rotX": 0.0208090134,
"rotY": 269.999146,
"rotZ": 0.0167706739,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Alice Margatroid",
"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": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 379703,
"SidewaysCard": false,
"CustomDeck": {
"3797": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904329658/CDE03457D765E04921700D604B48A8496619D223/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904330165/43E44FFECA42DF35E4E524E1BC639176C143B977/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ccd02d",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6107979,
"posY": 1.362232,
"posZ": -59.9717026,
"rotX": 0.0208131652,
"rotY": 270.01062,
"rotZ": 0.0167720374,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d01288",
"Name": "Custom_Model",
"Transform": {
"posX": -16.610775,
"posY": 1.35922015,
"posZ": -70.26131,
"rotX": 0.0208163913,
"rotY": 269.99942,
"rotZ": 0.016767798,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d13e2a",
"Name": "Card",
"Transform": {
"posX": -22.615694,
"posY": 1.31099141,
"posZ": -69.0756149,
"rotX": 0.01678034,
"rotY": 180.024475,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Marisa Kirisame",
"Description": "The Ordinary Magician",
"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": 379502,
"SidewaysCard": true,
"CustomDeck": {
"3795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904294967/B4D926C197E0AE17DD9C63E0F6DE5779BBCCABB1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904295790/8CF9198FDA65F0E54683DF9216C976F0AD09E48A/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dde8a8",
"Name": "Custom_Model",
"Transform": {
"posX": -16.61024,
"posY": 1.35727227,
"posZ": -76.91641,
"rotX": 0.0208162386,
"rotY": 269.999725,
"rotZ": 0.0167682841,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Survivor turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e4c282",
"Name": "Card",
"Transform": {
"posX": -22.613905,
"posY": 1.3155694,
"posZ": -53.43813,
"rotX": 0.0167801566,
"rotY": 180.024475,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Youmu Konpaku",
"Description": "The Half-Phantom Gardener",
"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": 379500,
"SidewaysCard": true,
"CustomDeck": {
"3795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904294967/B4D926C197E0AE17DD9C63E0F6DE5779BBCCABB1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904295790/8CF9198FDA65F0E54683DF9216C976F0AD09E48A/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f0b6f4",
"Name": "Custom_Model",
"Transform": {
"posX": -16.6150017,
"posY": 1.35994041,
"posZ": -67.79545,
"rotX": 0.0208162032,
"rotY": 269.999847,
"rotZ": 0.0167683754,
"scaleX": 0.45,
"scaleY": 0.6,
"scaleZ": 0.45
},
"Nickname": "Turn token",
"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": false,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 4,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7a17c",
"Name": "Card",
"Transform": {
"posX": -22.6157646,
"posY": 1.30868757,
"posZ": -76.9460449,
"rotX": 0.0167804025,
"rotY": 180.024475,
"rotZ": 359.9792,
"scaleX": 1.1,
"scaleY": 1.0,
"scaleZ": 1.1
},
"Nickname": "Alice Margatroid",
"Description": "The Seven-Colored Puppeteer",
"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": 379503,
"SidewaysCard": true,
"CustomDeck": {
"3795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904294967/B4D926C197E0AE17DD9C63E0F6DE5779BBCCABB1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1775000854904295790/8CF9198FDA65F0E54683DF9216C976F0AD09E48A/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"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
}
}
]
}