40514 lines
1.6 MiB
40514 lines
1.6 MiB
{
|
|
"GUID": "2f8332",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 8.350832,
|
|
"posY": 1.4621948,
|
|
"posZ": -26.05598,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0168739371,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Artifact Expansion 1.6",
|
|
"Description": "By Mint Tea Fan",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"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/1799728983834465397/5B8C8FFC332DCC1F09FEA1617F0F3446F06821DB/",
|
|
"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\":{\"0cd655\":{\"lock\":false,\"pos\":{\"x\":6.757,\"y\":1.3065,\"z\":-74.3312},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"1370f5\":{\"lock\":false,\"pos\":{\"x\":6.757,\"y\":1.3098,\"z\":-63.0812},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"9887f9\":{\"lock\":false,\"pos\":{\"x\":37.0815,\"y\":1.4527,\"z\":-38.1001},\"rot\":{\"x\":359.9181,\"y\":269.9817,\"z\":0.017}},\"bc9bc6\":{\"lock\":false,\"pos\":{\"x\":6.6076,\"y\":1.3136,\"z\":-50.0096},\"rot\":{\"x\":0.0208,\"y\":270.0268,\"z\":0.0168}},\"defb26\":{\"lock\":false,\"pos\":{\"x\":6.757,\"y\":1.3082,\"z\":-68.7062},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"ec74df\":{\"lock\":false,\"pos\":{\"x\":6.757,\"y\":1.3115,\"z\":-57.4562},\"rot\":{\"x\":0.0208,\"y\":270.0008,\"z\":0.0168}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "0cd655",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 6.756999,
|
|
"posY": 1.30651581,
|
|
"posZ": -74.3312,
|
|
"rotX": 0.0208087228,
|
|
"rotY": 270.000122,
|
|
"rotZ": 0.016771052,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Return Investigators",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"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/1749065613220127034/7F46F54C59DC35C907A004398C7FB2A005CF1681/",
|
|
"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\":{\"1a0010\":{\"lock\":false,\"pos\":{\"x\":-16.6334,\"y\":1.3599,\"z\":-67.8159},\"rot\":{\"x\":0.0209,\"y\":269.7354,\"z\":0.0167}},\"1dae6f\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3156,\"z\":-53.4381},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"217d23\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.311,\"z\":-69.0732},\"rot\":{\"x\":0.0208,\"y\":269.948,\"z\":0.0168}},\"2517e3\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.3006,\"z\":-53.4368},\"rot\":{\"x\":359.9832,\"y\":0,\"z\":0.0208}},\"2859f6\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3168,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"299099\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2914,\"z\":-84.818},\"rot\":{\"x\":359.9832,\"y\":-0.0008,\"z\":0.0208}},\"2bfebd\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.3549,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"3db726\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3064,\"z\":-84.8185},\"rot\":{\"x\":0.0208,\"y\":269.9892,\"z\":0.0168}},\"515d57\":{\"lock\":false,\"pos\":{\"x\":-16.6445,\"y\":1.3645,\"z\":-52.1184},\"rot\":{\"x\":0.0208,\"y\":269.9597,\"z\":0.0168}},\"57afbd\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3619,\"z\":-61.231},\"rot\":{\"x\":0.0208,\"y\":269.9651,\"z\":0.0168}},\"75f5ce\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.3099,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"7f854d\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3122,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"81ca9a\":{\"lock\":false,\"pos\":{\"x\":-16.5354,\"y\":1.3529,\"z\":-91.914},\"rot\":{\"x\":0.0208,\"y\":269.984,\"z\":0.0168}},\"841599\":{\"lock\":false,\"pos\":{\"x\":-16.6407,\"y\":1.3553,\"z\":-83.5355},\"rot\":{\"x\":0.0208,\"y\":269.9418,\"z\":0.0167}},\"89a7d5\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3641,\"z\":-53.3904},\"rot\":{\"x\":0.0208,\"y\":270.0161,\"z\":0.0168}},\"8dc98e\":{\"lock\":false,\"pos\":{\"x\":-16.6377,\"y\":1.3622,\"z\":-60.0073},\"rot\":{\"x\":0.0209,\"y\":269.7822,\"z\":0.0167}},\"941db9\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3596,\"z\":-69.0603},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"9e52fa\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2961,\"z\":-69.0606},\"rot\":{\"x\":359.9832,\"y\":0.0185,\"z\":0.0208}},\"a0d6ed\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3087,\"z\":-76.946},\"rot\":{\"x\":0.0208,\"y\":269.9773,\"z\":0.0168}},\"a8cd58\":{\"lock\":false,\"pos\":{\"x\":-22.5449,\"y\":1.3043,\"z\":-92.038},\"rot\":{\"x\":0.0208,\"y\":269.9947,\"z\":0.0168}},\"b0c851\":{\"lock\":false,\"pos\":{\"x\":-16.6394,\"y\":1.3546,\"z\":-86.0186},\"rot\":{\"x\":0.0208,\"y\":270.0095,\"z\":0.0168}},\"b3c3a3\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3569,\"z\":-78.1756},\"rot\":{\"x\":0.0208,\"y\":270.0157,\"z\":0.0168}},\"b91e7f\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"bea2cf\":{\"lock\":false,\"pos\":{\"x\":-26.3008,\"y\":1.2937,\"z\":-76.9456},\"rot\":{\"x\":359.9832,\"y\":0,\"z\":0.0208}},\"d2d130\":{\"lock\":false,\"pos\":{\"x\":-19.2277,\"y\":1.3055,\"z\":-92.0377},\"rot\":{\"x\":0.0208,\"y\":270.0011,\"z\":0.0168}},\"dd1080\":{\"lock\":false,\"pos\":{\"x\":-16.5354,\"y\":1.3533,\"z\":-90.6756},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"dd3da9\":{\"lock\":false,\"pos\":{\"x\":-16.6426,\"y\":1.3576,\"z\":-75.6991},\"rot\":{\"x\":0.0209,\"y\":269.6921,\"z\":0.0167}},\"df8495\":{\"lock\":false,\"pos\":{\"x\":-26.2276,\"y\":1.2894,\"z\":-92.0375},\"rot\":{\"x\":359.9832,\"y\":-0.0001,\"z\":0.0208}},\"e3bff5\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3615,\"z\":-62.4608},\"rot\":{\"x\":0.0208,\"y\":270.0176,\"z\":0.0168}},\"ecaa6b\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3573,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0087,\"z\":0.0168}},\"ed82ab\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3592,\"z\":-70.2906},\"rot\":{\"x\":0.0208,\"y\":270.0092,\"z\":0.0168}},\"f1a8b2\":{\"lock\":false,\"pos\":{\"x\":-16.64,\"y\":1.3638,\"z\":-54.6207},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"f9f763\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3145,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"fc2eac\":{\"lock\":false,\"pos\":{\"x\":-16.5395,\"y\":1.3525,\"z\":-93.1485},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"fe273b\":{\"lock\":false,\"pos\":{\"x\":-26.2993,\"y\":1.2983,\"z\":-61.2406},\"rot\":{\"x\":359.9832,\"y\":0.0001,\"z\":0.0208}},\"fe4fcc\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3133,\"z\":-61.2416},\"rot\":{\"x\":0.0208,\"y\":269.9266,\"z\":0.0167}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "1a0010",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6292171,
|
|
"posY": 1.35993052,
|
|
"posZ": -67.8117,
|
|
"rotX": 0.020893123,
|
|
"rotY": 269.7354,
|
|
"rotZ": 0.0166715737,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "1dae6f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.6139,
|
|
"posY": 1.31557226,
|
|
"posZ": -53.4283371,
|
|
"rotX": 0.0208068788,
|
|
"rotY": 270.004639,
|
|
"rotZ": 0.0167729873,
|
|
"scaleX": 0.7828339,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7828339
|
|
},
|
|
"Nickname": "Vincent Lee",
|
|
"Description": "The Doctor",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6312": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750192534027640983/7429658EEC04FBA0CD67D907D6FFEDB90357F574/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1749065613217967960/FDE23A1DFCEB49411850B7D9D8DEA70ABBAD4887/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "217d23",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.6157,
|
|
"posY": 1.31099212,
|
|
"posZ": -69.0732,
|
|
"rotX": 0.0208240375,
|
|
"rotY": 269.948029,
|
|
"rotZ": 0.0167521834,
|
|
"scaleX": 0.7828339,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7828339
|
|
},
|
|
"Nickname": "Indira Jain",
|
|
"Description": "The Maharani",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6309": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759404713/6C3211382D0BB440074AF5C0E8D8395FF71F4737/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1750191974480891236/F49464DF973ED6057D056B0184BEE565220BE446/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2517e3",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.3,
|
|
"posY": 1.30062628,
|
|
"posZ": -53.4368,
|
|
"rotX": 359.983215,
|
|
"rotY": -1.16392112E-05,
|
|
"rotZ": 0.0208510663,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "Vincent",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.149159223,
|
|
"g": 0.41450727,
|
|
"b": 0.7329264
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "3f3afb",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -47.27145,
|
|
"posY": 4.36430359,
|
|
"posZ": -47.4373131,
|
|
"rotX": 0.0208063666,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0167993233,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
378621,
|
|
378621,
|
|
378621
|
|
],
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "889bdd",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.31375027,
|
|
"posZ": -72.37815,
|
|
"rotX": 0.000379473262,
|
|
"rotY": 270.0,
|
|
"rotZ": -0.00110391818,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "b986ee",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.36264,
|
|
"posZ": -72.37815,
|
|
"rotX": 0.259782583,
|
|
"rotY": 269.999023,
|
|
"rotZ": 359.569183,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "463e29",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.38382769,
|
|
"posZ": -72.37815,
|
|
"rotX": 0.000303605746,
|
|
"rotY": 270.0,
|
|
"rotZ": -0.000882683147,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "6835ab",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -47.173584,
|
|
"posY": 4.494416,
|
|
"posZ": -47.0767632,
|
|
"rotX": 0.0208204184,
|
|
"rotY": 269.979858,
|
|
"rotZ": 0.01678682,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Vincent Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
226300,
|
|
278010,
|
|
380127,
|
|
368430,
|
|
368514,
|
|
368513,
|
|
226317,
|
|
447832,
|
|
545305,
|
|
226301,
|
|
368805,
|
|
553113,
|
|
226316,
|
|
440926,
|
|
226325,
|
|
274607,
|
|
378620,
|
|
277607,
|
|
545308,
|
|
226310,
|
|
430501,
|
|
368422,
|
|
368502,
|
|
368810,
|
|
368822,
|
|
368425,
|
|
368421,
|
|
226302,
|
|
226324,
|
|
226301
|
|
],
|
|
"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
|
|
},
|
|
"2780": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"4478": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"4409": {
|
|
"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
|
|
},
|
|
"2746": {
|
|
"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
|
|
},
|
|
"3786": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"4305": {
|
|
"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": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "f62968",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1613159,
|
|
"posY": 8.699085,
|
|
"posZ": -68.62173,
|
|
"rotX": 359.390472,
|
|
"rotY": 270.0027,
|
|
"rotZ": 179.397,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Take the Initiative",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226300,
|
|
"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": "708619",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615028,
|
|
"posY": 8.6705,
|
|
"posZ": -68.6218643,
|
|
"rotX": 0.132801756,
|
|
"rotY": 269.999481,
|
|
"rotZ": 179.922318,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Alice Luxley",
|
|
"Description": "Fearless Flatfoot",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 278010,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2780": {
|
|
"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": "d0b607",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1612549,
|
|
"posY": 8.709473,
|
|
"posZ": -68.62165,
|
|
"rotX": 358.9896,
|
|
"rotY": 270.008972,
|
|
"rotZ": 179.08847,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Healing Words",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 380127,
|
|
"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": "8d1052",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1616249,
|
|
"posY": 8.633395,
|
|
"posZ": -68.6219559,
|
|
"rotX": 0.8038629,
|
|
"rotY": 270.00296,
|
|
"rotZ": 180.492981,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Charles Ross, Esq.",
|
|
"Description": "Acquisitions and Solicitation",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368430,
|
|
"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": "9b9cc8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16159,
|
|
"posY": 8.627264,
|
|
"posZ": -68.62196,
|
|
"rotX": 0.7094089,
|
|
"rotY": 270.003265,
|
|
"rotZ": 180.5907,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Smoking Pipe",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368514,
|
|
"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": "16d82f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1612625,
|
|
"posY": 8.722582,
|
|
"posZ": -68.62166,
|
|
"rotX": 358.8411,
|
|
"rotY": 270.0102,
|
|
"rotZ": 179.060349,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Painkillers",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368513,
|
|
"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": "c3ca16",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1616859,
|
|
"posY": 8.614271,
|
|
"posZ": -68.621994,
|
|
"rotX": 1.11178815,
|
|
"rotY": 270.005859,
|
|
"rotZ": 180.650452,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Emergency Aid",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226317,
|
|
"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": "2c7553",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1612854,
|
|
"posY": 8.684797,
|
|
"posZ": -68.6217651,
|
|
"rotX": 359.7743,
|
|
"rotY": 270.000122,
|
|
"rotZ": 179.667755,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Practice Makes Perfect",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447832,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4478": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "169591",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16159,
|
|
"posY": 8.643863,
|
|
"posZ": -68.62195,
|
|
"rotX": 0.653078,
|
|
"rotY": 270.001953,
|
|
"rotZ": 180.472427,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Grete Wagner",
|
|
"Description": "The Purifier",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "6c73fa",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16132,
|
|
"posY": 8.734975,
|
|
"posZ": -68.62166,
|
|
"rotX": 358.38623,
|
|
"rotY": 270.01593,
|
|
"rotZ": 179.006439,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Inspiring Presence",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226301,
|
|
"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": "602d2c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615028,
|
|
"posY": 8.658414,
|
|
"posZ": -68.62191,
|
|
"rotX": 0.141915262,
|
|
"rotY": 270.000458,
|
|
"rotZ": 180.1826,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Stunning Blow",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "f04524",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614761,
|
|
"posY": 8.654438,
|
|
"posZ": -68.62191,
|
|
"rotX": 0.122242324,
|
|
"rotY": 270.000244,
|
|
"rotZ": 180.38884,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mariner's Compass",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 553113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "382334",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1616974,
|
|
"posY": 8.611454,
|
|
"posZ": -68.622,
|
|
"rotX": 1.09233522,
|
|
"rotY": 270.005859,
|
|
"rotZ": 180.635788,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Second Wind",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226316,
|
|
"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": "b8997e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1612167,
|
|
"posY": 8.748763,
|
|
"posZ": -68.62166,
|
|
"rotX": 358.542053,
|
|
"rotY": 270.012756,
|
|
"rotZ": 179.090225,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Solemn Vow",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 440926,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4409": {
|
|
"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": "59deb1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16126,
|
|
"posY": 8.692535,
|
|
"posZ": -68.6217,
|
|
"rotX": 359.116028,
|
|
"rotY": 270.0039,
|
|
"rotZ": 179.483582,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bandolier",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226325,
|
|
"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": "85c562",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1613121,
|
|
"posY": 8.711819,
|
|
"posZ": -68.6217,
|
|
"rotX": 359.0264,
|
|
"rotY": 270.008,
|
|
"rotZ": 179.203842,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act of Desperation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 274607,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2746": {
|
|
"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": "1352e2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615334,
|
|
"posY": 8.658412,
|
|
"posZ": -68.6218948,
|
|
"rotX": 0.4322588,
|
|
"rotY": 269.9996,
|
|
"rotZ": 180.076126,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hallowed Mirror",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378620,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "69ed56",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1613922,
|
|
"posY": 8.684901,
|
|
"posZ": -68.62186,
|
|
"rotX": 359.592773,
|
|
"rotY": 270.0001,
|
|
"rotZ": 180.079849,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Enchanted Blade",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "155b4d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1617,
|
|
"posY": 8.597093,
|
|
"posZ": -68.62206,
|
|
"rotX": 1.23934889,
|
|
"rotY": 270.010559,
|
|
"rotZ": 181.079559,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Safeguard",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 545308,
|
|
"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": "b422e7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16157,
|
|
"posY": 8.67203,
|
|
"posZ": -68.6218643,
|
|
"rotX": 359.8845,
|
|
"rotY": 270.0006,
|
|
"rotZ": 179.933655,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Prepared for the Worst",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "6c5dff",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16175,
|
|
"posY": 8.586853,
|
|
"posZ": -68.6220856,
|
|
"rotX": 1.35600412,
|
|
"rotY": 270.013916,
|
|
"rotZ": 181.226685,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Winging It",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430501,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4305": {
|
|
"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": "155824",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.49650562,
|
|
"posZ": -68.62185,
|
|
"rotX": -6.551658E-05,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.999847,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Strange Solution",
|
|
"Description": "Unidentified",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368422,
|
|
"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": "c5ad4b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.50870681,
|
|
"posZ": -68.62185,
|
|
"rotX": -6.531442E-05,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.999771,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Overpower",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "8e6899",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.50051212,
|
|
"posZ": -68.62185,
|
|
"rotX": -4.26178667E-05,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.999878,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lucky!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "a85958",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.47455633,
|
|
"posZ": -68.62185,
|
|
"rotX": 1.74741235E-05,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.000153,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scavenging",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368822,
|
|
"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": "54026c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614838,
|
|
"posY": 1.38950217,
|
|
"posZ": -68.6218643,
|
|
"rotX": 0.009108229,
|
|
"rotY": 270.000153,
|
|
"rotZ": 180.011261,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Medical Texts",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368425,
|
|
"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": "234de4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.77696049,
|
|
"posZ": -68.62185,
|
|
"rotX": 3.20084643,
|
|
"rotY": 270.2751,
|
|
"rotZ": 189.821014,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Magnifying Glass",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368421,
|
|
"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": "52cd22",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1612854,
|
|
"posY": 1.33762956,
|
|
"posZ": -68.62183,
|
|
"rotX": 359.549957,
|
|
"rotY": 269.9999,
|
|
"rotZ": 180.009644,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Vicious Blow",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "93ab36",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -51.5615921,
|
|
"posY": 1.71938825,
|
|
"posZ": -46.9470139,
|
|
"rotX": 4.27244329,
|
|
"rotY": 269.98584,
|
|
"rotZ": 0.0146066081,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "First Aid",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226324,
|
|
"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": "ee0237",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -51.74549,
|
|
"posY": 1.64273274,
|
|
"posZ": -46.7258148,
|
|
"rotX": 0.0208086781,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167696774,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Inspiring Presence",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226301,
|
|
"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": "bd4a8b",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -23.8400745,
|
|
"posY": 4.367985,
|
|
"posZ": -47.5203972,
|
|
"rotX": 0.0207904261,
|
|
"rotY": 270.000244,
|
|
"rotZ": 0.016796723,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Vincent Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
602700,
|
|
602600
|
|
],
|
|
"CustomDeck": {
|
|
"6027": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613217971874/DE9834ECB7F45D6F97CF0EC168EED20BE4231BBE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6026": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613217969996/0CEB2A6D99FE7852A5A0F382CA4F9080D28AA225/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "7c865f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -26.1877,
|
|
"posY": 1.31390715,
|
|
"posZ": -54.6828,
|
|
"rotX": 0.0208084174,
|
|
"rotY": 270.000275,
|
|
"rotZ": 0.0167714618,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Malpractice",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 602700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6027": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613217971874/DE9834ECB7F45D6F97CF0EC168EED20BE4231BBE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3e9670",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -26.1786766,
|
|
"posY": 1.35036206,
|
|
"posZ": -54.7191467,
|
|
"rotX": 0.0124866152,
|
|
"rotY": 269.9964,
|
|
"rotZ": 0.01005272,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Surgical Saw",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 602600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6026": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613217969996/0CEB2A6D99FE7852A5A0F382CA4F9080D28AA225/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "2859f6",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.3,
|
|
"posY": 1.31677353,
|
|
"posZ": -53.4358,
|
|
"rotX": 0.020808991,
|
|
"rotY": 269.9996,
|
|
"rotZ": 0.0167706311,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Vincent Lee",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 604600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6046": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613218189274/846CA7D35626575C0B4529252999007331EAA166/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1749065613219523679/73C548DED4003E714BC3FEA3B7669666FA94D26B/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "299099",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.2996,
|
|
"posY": 1.291441,
|
|
"posZ": -84.818,
|
|
"rotX": 359.983215,
|
|
"rotY": -0.0008192465,
|
|
"rotZ": 0.0208471045,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "Carson",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.6229885,
|
|
"g": 0.208531439,
|
|
"b": 0.208531439
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "98ccd7",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.2995987,
|
|
"posY": 4.491918,
|
|
"posZ": -84.818,
|
|
"rotX": 0.0208371487,
|
|
"rotY": 270.009338,
|
|
"rotZ": 0.0167876482,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Carson Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
368812,
|
|
447733,
|
|
447733,
|
|
447733,
|
|
226325,
|
|
368833,
|
|
368825,
|
|
368825,
|
|
277606,
|
|
368811,
|
|
226301,
|
|
368810,
|
|
368810,
|
|
368828,
|
|
368828,
|
|
553113,
|
|
553113,
|
|
368802,
|
|
368802,
|
|
545308,
|
|
368822,
|
|
368822,
|
|
380229,
|
|
380229,
|
|
545316,
|
|
368806,
|
|
368806,
|
|
430501,
|
|
430501,
|
|
368833
|
|
],
|
|
"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
|
|
},
|
|
"4477": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"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
|
|
},
|
|
"3802": {
|
|
"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
|
|
},
|
|
"4305": {
|
|
"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": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "3f3488",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.010221,
|
|
"posY": 3.71740985,
|
|
"posZ": -16.6966,
|
|
"rotX": 359.9158,
|
|
"rotY": 270.008362,
|
|
"rotZ": 0.0178972632,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "A Chance Encounter",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"02270\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368812,
|
|
"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": "f21109",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.044899,
|
|
"posY": 3.92559481,
|
|
"posZ": -16.70389,
|
|
"rotX": 359.809723,
|
|
"rotY": 269.959351,
|
|
"rotZ": 0.08677484,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "A Glimmer of Hope",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Blessed. Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447733,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4477": {
|
|
"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": "f21109",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.044899,
|
|
"posY": 3.92559481,
|
|
"posZ": -16.70389,
|
|
"rotX": 359.809723,
|
|
"rotY": 269.959351,
|
|
"rotZ": 0.08677484,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "A Glimmer of Hope",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Blessed. Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447733,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4477": {
|
|
"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": "f21109",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.044899,
|
|
"posY": 3.92559481,
|
|
"posZ": -16.70389,
|
|
"rotX": 359.809723,
|
|
"rotY": 269.959351,
|
|
"rotZ": 0.08677484,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "A Glimmer of Hope",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Blessed. Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447733,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4477": {
|
|
"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": "82775a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.076146,
|
|
"posY": 3.73079348,
|
|
"posZ": -16.7104549,
|
|
"rotX": 359.905151,
|
|
"rotY": 269.913879,
|
|
"rotZ": 0.0264921524,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bandolier",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"02147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226325,
|
|
"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": "1b4434",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.132193,
|
|
"posY": 3.67998171,
|
|
"posZ": -16.7226753,
|
|
"rotX": 359.920166,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.0171874557,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dark Horse",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"02234\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Condition.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368833,
|
|
"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": "9da37c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.131704,
|
|
"posY": 4.51838636,
|
|
"posZ": -16.7225761,
|
|
"rotX": 359.920227,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.0167915281,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fire Axe",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"02032\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368825,
|
|
"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": "9da37c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.131704,
|
|
"posY": 4.51838636,
|
|
"posZ": -16.7225761,
|
|
"rotX": 359.920227,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.0167915281,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fire Axe",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"02032\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368825,
|
|
"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": "a20887",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.131704,
|
|
"posY": 3.694062,
|
|
"posZ": -16.7225761,
|
|
"rotX": 359.920166,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.01706111,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Grisly Totem",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"05119\",\n \"type\": \"Asset\",\n \"class\": \"Survivor|Seeker\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277606,
|
|
"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": "30f90b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.040538,
|
|
"posY": 3.90926242,
|
|
"posZ": -16.7029743,
|
|
"rotX": 359.84903,
|
|
"rotY": 269.965546,
|
|
"rotZ": 0.0618917458,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Improvised Weapon",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"04033\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368811,
|
|
"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": "80628f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 8.971655,
|
|
"posY": 5.082025,
|
|
"posZ": -16.6886063,
|
|
"rotX": 359.920074,
|
|
"rotY": 270.012573,
|
|
"rotZ": 0.0168711413,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Inspiring Presence",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"03228\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226301,
|
|
"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": "ce0dd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.03467751,
|
|
"posY": 3.7769618,
|
|
"posZ": -16.7017422,
|
|
"rotX": 359.901855,
|
|
"rotY": 269.973877,
|
|
"rotZ": 0.0284617729,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lucky!",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"01080\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": 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": "ce0dd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.03467751,
|
|
"posY": 3.7769618,
|
|
"posZ": -16.7017422,
|
|
"rotX": 359.901855,
|
|
"rotY": 269.973877,
|
|
"rotZ": 0.0284617729,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lucky!",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"01080\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": 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": "1ee492",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.131704,
|
|
"posY": 5.52994871,
|
|
"posZ": -16.7225761,
|
|
"rotX": 359.920319,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.01641573,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Madame Labranche",
|
|
"Description": "Mysterious Benefactress",
|
|
"GMNotes": "{\n \"id\": \"03198\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368828,
|
|
"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": "1ee492",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.131704,
|
|
"posY": 5.52994871,
|
|
"posZ": -16.7225761,
|
|
"rotX": 359.920319,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.01641573,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Madame Labranche",
|
|
"Description": "Mysterious Benefactress",
|
|
"GMNotes": "{\n \"id\": \"03198\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368828,
|
|
"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": "4e2d75",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.035413,
|
|
"posY": 3.85468674,
|
|
"posZ": -16.7018967,
|
|
"rotX": 359.895233,
|
|
"rotY": 269.972839,
|
|
"rotZ": 0.03265638,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mariner's Compass",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"07121\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 553113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4e2d75",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.035413,
|
|
"posY": 3.85468674,
|
|
"posZ": -16.7018967,
|
|
"rotX": 359.895233,
|
|
"rotY": 269.972839,
|
|
"rotZ": 0.03265638,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mariner's Compass",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"07121\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 553113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "334f03",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.122408,
|
|
"posY": 3.93868828,
|
|
"posZ": -16.7201862,
|
|
"rotX": 0.127928942,
|
|
"rotY": 269.812866,
|
|
"rotZ": 359.891083,
|
|
"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}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": 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": "334f03",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.122408,
|
|
"posY": 3.93868828,
|
|
"posZ": -16.7201862,
|
|
"rotX": 0.127928942,
|
|
"rotY": 269.812866,
|
|
"rotZ": 359.891083,
|
|
"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}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": 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": "8d6ae6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 8.982089,
|
|
"posY": 3.73175621,
|
|
"posZ": -16.69072,
|
|
"rotX": 359.9108,
|
|
"rotY": 270.01416,
|
|
"rotZ": 0.0190992244,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Safeguard",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"60110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 545308,
|
|
"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": "1b76c9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.161393,
|
|
"posY": 3.868189,
|
|
"posZ": -16.7288055,
|
|
"rotX": 359.9322,
|
|
"rotY": 269.795837,
|
|
"rotZ": 359.9534,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scavenging",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"01073\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368822,
|
|
"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": "1b76c9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.161393,
|
|
"posY": 3.868189,
|
|
"posZ": -16.7288055,
|
|
"rotX": 359.9322,
|
|
"rotY": 269.795837,
|
|
"rotZ": 359.9534,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scavenging",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"01073\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368822,
|
|
"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": "7651f3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 8.981126,
|
|
"posY": 3.83859324,
|
|
"posZ": -16.6905212,
|
|
"rotX": 359.912079,
|
|
"rotY": 270.0141,
|
|
"rotZ": 0.0187908951,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scrounge for Supplies",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"06165\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 380229,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3802": {
|
|
"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": "7651f3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 8.981126,
|
|
"posY": 3.83859324,
|
|
"posZ": -16.6905212,
|
|
"rotX": 359.912079,
|
|
"rotY": 270.0141,
|
|
"rotZ": 0.0187908951,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scrounge for Supplies",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"06165\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 380229,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3802": {
|
|
"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": "7ec473",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.135754,
|
|
"posY": 3.67716622,
|
|
"posZ": -16.72342,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.0174355973,
|
|
"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}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": 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": "cc6e4d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.133752,
|
|
"posY": 3.82030773,
|
|
"posZ": -16.723,
|
|
"rotX": 359.920227,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.0169372931,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Take Heart",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"04201\",\n \"alternate_ids\": [ \"60519\" ],\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368806,
|
|
"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": "cc6e4d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.133752,
|
|
"posY": 3.82030773,
|
|
"posZ": -16.723,
|
|
"rotX": 359.920227,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.0169372931,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Take Heart",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"04201\",\n \"alternate_ids\": [ \"60519\" ],\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368806,
|
|
"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": "aa3984",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.131704,
|
|
"posY": 5.407317,
|
|
"posZ": -16.7225761,
|
|
"rotX": 359.9203,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.0165696088,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Winging It",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"04272\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430501,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4305": {
|
|
"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": "aa3984",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.131704,
|
|
"posY": 5.407317,
|
|
"posZ": -16.7225761,
|
|
"rotX": 359.9203,
|
|
"rotY": 269.795776,
|
|
"rotZ": 0.0165696088,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Winging It",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"04272\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430501,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4305": {
|
|
"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": "1b4434",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -31.1136074,
|
|
"posY": 1.64187789,
|
|
"posZ": -75.0797348,
|
|
"rotX": 0.02063426,
|
|
"rotY": 270.0093,
|
|
"rotZ": 0.0165888481,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dark Horse",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"02234\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Condition.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368833,
|
|
"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": "6a01d8",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.29873,
|
|
"posY": 4.402499,
|
|
"posZ": -84.818,
|
|
"rotX": 356.83136,
|
|
"rotY": 270.003784,
|
|
"rotZ": 0.0167563763,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Carsons Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
631700,
|
|
631800,
|
|
631600
|
|
],
|
|
"CustomDeck": {
|
|
"6317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/4114593130886014632/8ABBC2E176DDDF30D6D3CD5311F43DCD970FAD93/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6318": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862801063453983855/BCED345CC74FB49CCAEDB53E04A065BA2AEC1642/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6316": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/4114593130886013757/ED9BE0409E10FF78C1AFA70E3301A04DF57BC2CF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "31d03f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -27.59076,
|
|
"posY": 1.30340731,
|
|
"posZ": -88.8124,
|
|
"rotX": 0.020808531,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01677117,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Francis Dupuis",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/4114593130886014632/8ABBC2E176DDDF30D6D3CD5311F43DCD970FAD93/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e4bbbb",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -27.8936138,
|
|
"posY": 1.37919664,
|
|
"posZ": -88.96862,
|
|
"rotX": 358.372864,
|
|
"rotY": 269.955139,
|
|
"rotZ": 0.0184950735,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Anticipation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6318": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862801063453983855/BCED345CC74FB49CCAEDB53E04A065BA2AEC1642/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "45665e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -27.5522327,
|
|
"posY": 1.46786427,
|
|
"posZ": -88.820076,
|
|
"rotX": 356.631683,
|
|
"rotY": 270.003326,
|
|
"rotZ": 0.0167824831,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Webb Estate",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6316": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/4114593130886013757/ED9BE0409E10FF78C1AFA70E3301A04DF57BC2CF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "2bfebd",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6360149,
|
|
"posY": 1.35495126,
|
|
"posZ": -84.81402,
|
|
"rotX": 0.0208163578,
|
|
"rotY": 269.9995,
|
|
"rotZ": 0.01676777,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "3db726",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.616909,
|
|
"posY": 1.30638278,
|
|
"posZ": -84.8185,
|
|
"rotX": 0.0208090171,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0167711657,
|
|
"scaleX": 0.7828339,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7828339
|
|
},
|
|
"Nickname": "Carson Sinclair",
|
|
"Description": "The Butler",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6314": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/4114593130886009813/28295859E066EEB3866BDA518FB587F273D8A7E4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/4114593130886010263/D459B0A61580542C4A3E6BE32EE5ABDC8E1092EA/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "515d57",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6403179,
|
|
"posY": 1.36452138,
|
|
"posZ": -52.114212,
|
|
"rotX": 0.0208282042,
|
|
"rotY": 269.9597,
|
|
"rotZ": 0.0167533,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "57afbd",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6359177,
|
|
"posY": 1.36185563,
|
|
"posZ": -61.2268143,
|
|
"rotX": 0.0208269767,
|
|
"rotY": 269.9651,
|
|
"rotZ": 0.01675506,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "75f5ce",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.2936,
|
|
"posY": 1.30989552,
|
|
"posZ": -76.9415,
|
|
"rotX": 0.0208088215,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167707037,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Minako Miyawaki",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6050": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613219528832/C4947BEE987029D6D51CDE051E645C02B112F61F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1749065613219527491/C91205499E6F9E1A546DD97F13400E4E790735DB/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7f854d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.2959,
|
|
"posY": 1.3122015,
|
|
"posZ": -69.0607,
|
|
"rotX": 0.0208088569,
|
|
"rotY": 269.9998,
|
|
"rotZ": 0.0167708118,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Indira Jain",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6305": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759411102/E06667C1F1A5175B881BD4246A3BB55FC702C0DE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759411622/081C389D7C5B643BCEDD0168E60E33CCFD3EA297/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "81ca9a",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.5312176,
|
|
"posY": 1.35291231,
|
|
"posZ": -91.90982,
|
|
"rotX": 0.02082108,
|
|
"rotY": 269.984,
|
|
"rotZ": 0.0167623963,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "841599",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.636507,
|
|
"posY": 1.35532653,
|
|
"posZ": -83.53131,
|
|
"rotX": 0.020833578,
|
|
"rotY": 269.9418,
|
|
"rotZ": 0.01674694,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "89a7d5",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6359119,
|
|
"posY": 1.36415064,
|
|
"posZ": -53.38622,
|
|
"rotX": 0.0208118539,
|
|
"rotY": 270.0161,
|
|
"rotZ": 0.01677409,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "8dc98e",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6335182,
|
|
"posY": 1.36221457,
|
|
"posZ": -60.0031052,
|
|
"rotX": 0.0208803862,
|
|
"rotY": 269.7822,
|
|
"rotZ": 0.01668877,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "941db9",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.636116,
|
|
"posY": 1.35956371,
|
|
"posZ": -69.05612,
|
|
"rotX": 0.02081636,
|
|
"rotY": 269.9995,
|
|
"rotZ": 0.0167676713,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "9e52fa",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.3001976,
|
|
"posY": 1.296053,
|
|
"posZ": -69.0606,
|
|
"rotX": 359.983215,
|
|
"rotY": 0.0185051542,
|
|
"rotZ": 0.02081624,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "Indira",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.217192382,
|
|
"g": 0.5981638,
|
|
"b": 0.333269149
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "a67a27",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.2993011,
|
|
"posY": 4.539623,
|
|
"posZ": -69.06059,
|
|
"rotX": 356.6586,
|
|
"rotY": 269.991028,
|
|
"rotZ": 0.0186312385,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Indira Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
368624,
|
|
261700,
|
|
538603,
|
|
380029,
|
|
448029,
|
|
380126,
|
|
368714,
|
|
368706,
|
|
448029,
|
|
380126,
|
|
380029,
|
|
368715,
|
|
261700,
|
|
368715,
|
|
538603,
|
|
553106,
|
|
553106,
|
|
368708,
|
|
368624,
|
|
538615,
|
|
368508,
|
|
368508,
|
|
368504,
|
|
368504,
|
|
368500,
|
|
368500,
|
|
368716,
|
|
368716,
|
|
368625,
|
|
368714
|
|
],
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"3800": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"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
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "4db482",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16159,
|
|
"posY": 8.641034,
|
|
"posZ": -68.6220245,
|
|
"rotX": 0.6411166,
|
|
"rotY": 270.0045,
|
|
"rotZ": 180.881149,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lucky Cigarette Case",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "9b20ee",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16157,
|
|
"posY": 8.628433,
|
|
"posZ": -68.62194,
|
|
"rotX": 0.686365843,
|
|
"rotY": 270.003021,
|
|
"rotZ": 180.634109,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Watch this!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b324bb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.161232,
|
|
"posY": 8.733343,
|
|
"posZ": -68.62163,
|
|
"rotX": 358.651031,
|
|
"rotY": 270.0142,
|
|
"rotZ": 178.9036,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lockpicks",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538603,
|
|
"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": "d9c38b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614,
|
|
"posY": 8.681615,
|
|
"posZ": -68.62177,
|
|
"rotX": 359.696747,
|
|
"rotY": 270.00058,
|
|
"rotZ": 179.640808,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Gregory Gry",
|
|
"Description": "Muckraker",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 380029,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3800": {
|
|
"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": "2bb753",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16132,
|
|
"posY": 8.703527,
|
|
"posZ": -68.62174,
|
|
"rotX": 359.248,
|
|
"rotY": 270.00415,
|
|
"rotZ": 179.409851,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spectral Razor",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b358f7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16146,
|
|
"posY": 8.662197,
|
|
"posZ": -68.6217957,
|
|
"rotX": 359.9234,
|
|
"rotY": 269.999756,
|
|
"rotZ": 179.834869,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Read the Signs",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "5371cc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16154,
|
|
"posY": 8.65368,
|
|
"posZ": -68.6219254,
|
|
"rotX": 0.2532918,
|
|
"rotY": 270.000671,
|
|
"rotZ": 180.31424,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Slip Away",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368714,
|
|
"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": "20fdd1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16167,
|
|
"posY": 8.60067749,
|
|
"posZ": -68.6220856,
|
|
"rotX": 1.31080949,
|
|
"rotY": 270.0138,
|
|
"rotZ": 181.325958,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Daring Maneuver",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368706,
|
|
"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": "b7b77d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1613731,
|
|
"posY": 8.687582,
|
|
"posZ": -68.62174,
|
|
"rotX": 359.51355,
|
|
"rotY": 270.002136,
|
|
"rotZ": 179.476624,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spectral Razor",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "7b6c46",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614151,
|
|
"posY": 8.679379,
|
|
"posZ": -68.62179,
|
|
"rotX": 359.7292,
|
|
"rotY": 270.001038,
|
|
"rotZ": 179.605316,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Read the Signs",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "0a1069",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16143,
|
|
"posY": 8.687047,
|
|
"posZ": -68.6217651,
|
|
"rotX": 359.742157,
|
|
"rotY": 270.001465,
|
|
"rotZ": 179.444626,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Gregory Gry",
|
|
"Description": "Muckraker",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 380029,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3800": {
|
|
"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": "8f2f2b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615639,
|
|
"posY": 8.620988,
|
|
"posZ": -68.62194,
|
|
"rotX": 0.788197,
|
|
"rotY": 270.003845,
|
|
"rotZ": 180.670441,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cheap Shot",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368715,
|
|
"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": "a4bb52",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615677,
|
|
"posY": 8.62655449,
|
|
"posZ": -68.62195,
|
|
"rotX": 0.594450057,
|
|
"rotY": 270.00296,
|
|
"rotZ": 180.555862,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Watch this!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b07f0e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.161705,
|
|
"posY": 8.609478,
|
|
"posZ": -68.62203,
|
|
"rotX": 1.26959372,
|
|
"rotY": 270.0092,
|
|
"rotZ": 180.802948,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cheap Shot",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368715,
|
|
"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": "26ae16",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16131,
|
|
"posY": 8.719985,
|
|
"posZ": -68.62168,
|
|
"rotX": 358.962769,
|
|
"rotY": 270.0091,
|
|
"rotZ": 179.106476,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lockpicks",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538603,
|
|
"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": "5e550e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1613121,
|
|
"posY": 8.713104,
|
|
"posZ": -68.62171,
|
|
"rotX": 359.1024,
|
|
"rotY": 270.006165,
|
|
"rotZ": 179.348373,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Breaking and Entering",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 553106,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8573ba",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1613426,
|
|
"posY": 8.705328,
|
|
"posZ": -68.62172,
|
|
"rotX": 359.16925,
|
|
"rotY": 270.006653,
|
|
"rotZ": 179.194366,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Breaking and Entering",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 553106,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c86b30",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615639,
|
|
"posY": 8.646755,
|
|
"posZ": -68.62197,
|
|
"rotX": 0.429772943,
|
|
"rotY": 270.001617,
|
|
"rotZ": 180.50267,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Narrow Escape",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368708,
|
|
"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": "dd2b4a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615257,
|
|
"posY": 8.651927,
|
|
"posZ": -68.62191,
|
|
"rotX": 0.278786659,
|
|
"rotY": 270.000122,
|
|
"rotZ": 180.259872,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lucky Cigarette Case",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "155c32",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16123,
|
|
"posY": 8.743059,
|
|
"posZ": -68.62156,
|
|
"rotX": 358.573883,
|
|
"rotY": 270.020355,
|
|
"rotZ": 178.493317,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Nimble",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "e3cc9a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1616745,
|
|
"posY": 8.589792,
|
|
"posZ": -68.62207,
|
|
"rotX": 1.32493126,
|
|
"rotY": 270.014832,
|
|
"rotZ": 181.389252,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unexpected Courage",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "c6a5f4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614723,
|
|
"posY": 1.49590576,
|
|
"posZ": -68.6218643,
|
|
"rotX": 0.0030618608,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.019852,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unexpected Courage",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "667095",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.5055306,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.0008901378,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.994446,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Manual Dexterity",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "29a7cd",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.492768,
|
|
"posZ": -68.62185,
|
|
"rotX": 359.993927,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.96138,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Manual Dexterity",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "c60ba0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.4641906,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.005216829,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.966782,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Guts",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "bb4f98",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.42555857,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.00475883763,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.030334,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Guts",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "9d35da",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.38283885,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.007883863,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.050186,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Backstab",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368716,
|
|
"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": "af4f67",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16143,
|
|
"posY": 1.33686876,
|
|
"posZ": -68.62188,
|
|
"rotX": 359.576263,
|
|
"rotY": 270.0001,
|
|
"rotZ": 180.012665,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Backstab",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368716,
|
|
"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": "3ee1f3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16149,
|
|
"posY": 1.31268561,
|
|
"posZ": -68.62188,
|
|
"rotX": 0.009854095,
|
|
"rotY": 270.0005,
|
|
"rotZ": 180.062729,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pickpocketing",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "00a0db",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -31.42189,
|
|
"posY": 1.64653659,
|
|
"posZ": -59.20741,
|
|
"rotX": 0.020812653,
|
|
"rotY": 270.000549,
|
|
"rotZ": 0.0167648569,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Slip Away",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368714,
|
|
"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": "b154d0",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3011341,
|
|
"posY": 4.372047,
|
|
"posZ": -69.06059,
|
|
"rotX": 1.17393,
|
|
"rotY": 270.010345,
|
|
"rotZ": 0.0170087665,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Indira Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
631800,
|
|
631900
|
|
],
|
|
"CustomDeck": {
|
|
"6318": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750192092559288182/87633211129B5FC94BD75984A60AFF5851A9A9BC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6319": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750192092559288803/A8412C1516FFC22D45EB471ADFD31211541511E6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "503810",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -31.9443932,
|
|
"posY": 1.30925667,
|
|
"posZ": -63.4276733,
|
|
"rotX": 0.0208080076,
|
|
"rotY": 270.002319,
|
|
"rotZ": 0.0167720839,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Kali Assassin",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6311": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750192092559288182/87633211129B5FC94BD75984A60AFF5851A9A9BC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "72f64c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -31.854948,
|
|
"posY": 1.35130048,
|
|
"posZ": -62.988678,
|
|
"rotX": 0.0208087973,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0167709179,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blue Blood",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6312": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750192092559288803/A8412C1516FFC22D45EB471ADFD31211541511E6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "a0d6ed",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.6157,
|
|
"posY": 1.30868769,
|
|
"posZ": -76.946,
|
|
"rotX": 0.020815473,
|
|
"rotY": 269.9773,
|
|
"rotZ": 0.01676293,
|
|
"scaleX": 0.7828339,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7828339
|
|
},
|
|
"Nickname": "Minako Miyawaki",
|
|
"Description": "The Geisha",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6313": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521223900484025/66385CBDF357346837CDE62A64BB6457170DE909/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1750191692833593816/7C329E998F3B37BEF693AF143EC0A056A60E97D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a8cd58",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.5449,
|
|
"posY": 1.30429566,
|
|
"posZ": -92.038,
|
|
"rotX": 0.0208103769,
|
|
"rotY": 269.9947,
|
|
"rotZ": 0.0167692639,
|
|
"scaleX": 0.7828339,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7828339
|
|
},
|
|
"Nickname": "Bo Wen",
|
|
"Description": "The Monk",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6302": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759444572/B6FEDC7CE4A1D4C5878E24DE6AC6F963CEE44B81/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759445216/35B51CAF79344B216AD7D030A8EAD79540EE4664/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b0c851",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.63522,
|
|
"posY": 1.35460019,
|
|
"posZ": -86.01442,
|
|
"rotX": 0.0208134316,
|
|
"rotY": 270.0095,
|
|
"rotZ": 0.016771486,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "b3c3a3",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6359253,
|
|
"posY": 1.35689557,
|
|
"posZ": -78.17141,
|
|
"rotX": 0.0208121967,
|
|
"rotY": 270.0157,
|
|
"rotZ": 0.016773928,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "b91e7f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.2998,
|
|
"posY": 1.30758762,
|
|
"posZ": -84.8182,
|
|
"rotX": 0.020808816,
|
|
"rotY": 269.9997,
|
|
"rotZ": 0.0167707838,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Carson Sinclair",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6051": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613218192982/2CECD6649A815890BB27FEB676EA051C1A856877/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1749065613219530287/641C3813E39E609B1CB7F14EF02066EBC9A19992/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bea2cf",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.3008,
|
|
"posY": 1.29374468,
|
|
"posZ": -76.9456,
|
|
"rotX": 359.983215,
|
|
"rotY": 1.25013394E-05,
|
|
"rotZ": 0.02084328,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "Minako",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.5986127,
|
|
"g": 0.131551057,
|
|
"b": 0.70810163
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "02da4e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -47.91294,
|
|
"posY": 4.335318,
|
|
"posZ": -71.486145,
|
|
"rotX": 0.0208115075,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.01675767,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Essence of the Dream",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379929,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5ad6bc",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -47.340538,
|
|
"posY": 4.51143265,
|
|
"posZ": -71.42469,
|
|
"rotX": 0.0208124742,
|
|
"rotY": 270.0003,
|
|
"rotZ": 0.016759485,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Minako Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
430908,
|
|
230314,
|
|
538704,
|
|
277512,
|
|
368624,
|
|
430908,
|
|
538717,
|
|
368432,
|
|
230331,
|
|
368618,
|
|
368517,
|
|
379928,
|
|
277606,
|
|
605626,
|
|
368504,
|
|
538717,
|
|
448029,
|
|
605523,
|
|
368517,
|
|
277512,
|
|
538709,
|
|
230317,
|
|
380126,
|
|
605626,
|
|
368500,
|
|
448029,
|
|
368500,
|
|
230308,
|
|
230308,
|
|
230318,
|
|
230318,
|
|
230328,
|
|
230328,
|
|
230323,
|
|
538709
|
|
],
|
|
"CustomDeck": {
|
|
"4309": {
|
|
"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
|
|
},
|
|
"2775": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"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
|
|
},
|
|
"6056": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"6055": {
|
|
"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
|
|
},
|
|
"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": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "d94374",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16127,
|
|
"posY": 8.738666,
|
|
"posZ": -68.62161,
|
|
"rotX": 358.803253,
|
|
"rotY": 270.0163,
|
|
"rotZ": 178.580917,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deny Existence",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430908,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4309": {
|
|
"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": "4ddbcb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1616173,
|
|
"posY": 8.615665,
|
|
"posZ": -68.62201,
|
|
"rotX": 0.847779453,
|
|
"rotY": 270.005859,
|
|
"rotZ": 180.899368,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Storm of Spirits",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "4e1ffd",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1612968,
|
|
"posY": 8.722923,
|
|
"posZ": -68.621666,
|
|
"rotX": 359.04,
|
|
"rotY": 270.008,
|
|
"rotZ": 179.040482,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scrying Mirror",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538704,
|
|
"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": "7513fe",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16127,
|
|
"posY": 8.717836,
|
|
"posZ": -68.62167,
|
|
"rotX": 358.906067,
|
|
"rotY": 270.008118,
|
|
"rotZ": 179.191437,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sixth Sense",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277512,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2775": {
|
|
"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": "d3b8c3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615143,
|
|
"posY": 8.641845,
|
|
"posZ": -68.62196,
|
|
"rotX": 0.299191564,
|
|
"rotY": 270.00174,
|
|
"rotZ": 180.6315,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lucky Cigarette Case",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "cec0b1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16162,
|
|
"posY": 8.605497,
|
|
"posZ": -68.62203,
|
|
"rotX": 1.026724,
|
|
"rotY": 270.007721,
|
|
"rotZ": 181.031219,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deny Existence",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430908,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4309": {
|
|
"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": "39bca9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16143,
|
|
"posY": 8.672607,
|
|
"posZ": -68.62179,
|
|
"rotX": 359.710144,
|
|
"rotY": 270.0003,
|
|
"rotZ": 179.618622,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Prescient",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538717,
|
|
"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": "e33040",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16153,
|
|
"posY": 8.651308,
|
|
"posZ": -68.62189,
|
|
"rotX": 0.2855364,
|
|
"rotY": 270.0008,
|
|
"rotZ": 180.086746,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tooth of Eztli",
|
|
"Description": "Mortal Reminder",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "d40f37",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16154,
|
|
"posY": 8.647837,
|
|
"posZ": -68.62193,
|
|
"rotX": 0.4353222,
|
|
"rotY": 270.001678,
|
|
"rotZ": 180.478821,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "St. Hubert's Key",
|
|
"Description": "Cleansing Fire",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b9525c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614876,
|
|
"posY": 8.645899,
|
|
"posZ": -68.62187,
|
|
"rotX": 0.14992924,
|
|
"rotY": 270.000458,
|
|
"rotZ": 180.146957,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Decorated Skull",
|
|
"Description": "Doom Begets Doom",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368618,
|
|
"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": "9542a2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16168,
|
|
"posY": 8.606436,
|
|
"posZ": -68.6220551,
|
|
"rotX": 1.08940339,
|
|
"rotY": 270.0103,
|
|
"rotZ": 181.148987,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Backpack",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368517,
|
|
"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": "536d12",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1616631,
|
|
"posY": 8.591484,
|
|
"posZ": -68.62205,
|
|
"rotX": 1.32242823,
|
|
"rotY": 270.012451,
|
|
"rotZ": 181.220718,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dream Diary",
|
|
"Description": "Untranslated",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379928,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "58e86b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16146,
|
|
"posY": 8.692944,
|
|
"posZ": -68.62182,
|
|
"rotX": 359.669769,
|
|
"rotY": 270.001678,
|
|
"rotZ": 179.66922,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Grisly Totem",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277606,
|
|
"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": "399fe2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16157,
|
|
"posY": 8.627478,
|
|
"posZ": -68.62195,
|
|
"rotX": 0.7478417,
|
|
"rotY": 270.002777,
|
|
"rotZ": 180.6431,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Promise of Power",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605626,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6056": {
|
|
"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": "0d982c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16162,
|
|
"posY": 8.637864,
|
|
"posZ": -68.62197,
|
|
"rotX": 0.6305734,
|
|
"rotY": 270.0038,
|
|
"rotZ": 180.57663,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Manual Dexterity",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "d87557",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16661,
|
|
"posY": 9.824243,
|
|
"posZ": -68.62512,
|
|
"rotX": 352.6821,
|
|
"rotY": 270.4416,
|
|
"rotZ": 173.422958,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Prescient",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538717,
|
|
"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": "b04843",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1612854,
|
|
"posY": 8.725131,
|
|
"posZ": -68.62162,
|
|
"rotX": 359.060974,
|
|
"rotY": 270.0111,
|
|
"rotZ": 178.750763,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spectral Razor",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "7ac99b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.161396,
|
|
"posY": 8.705471,
|
|
"posZ": -68.62174,
|
|
"rotX": 359.435333,
|
|
"rotY": 270.003326,
|
|
"rotZ": 179.36792,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sword Cane",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605523,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6055": {
|
|
"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": "c44b08",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16137,
|
|
"posY": 8.696087,
|
|
"posZ": -68.6217957,
|
|
"rotX": 359.3907,
|
|
"rotY": 270.00235,
|
|
"rotZ": 179.602524,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Backpack",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368517,
|
|
"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": "e5314e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.161335,
|
|
"posY": 8.691221,
|
|
"posZ": -68.6217346,
|
|
"rotX": 359.404816,
|
|
"rotY": 270.002472,
|
|
"rotZ": 179.5264,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sixth Sense",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277512,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2775": {
|
|
"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": "15caf3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1611748,
|
|
"posY": 8.752229,
|
|
"posZ": -68.6215744,
|
|
"rotX": 358.3909,
|
|
"rotY": 270.021057,
|
|
"rotZ": 178.597275,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Crystal Pendulum",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538709,
|
|
"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": "c75892",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614571,
|
|
"posY": 8.670165,
|
|
"posZ": -68.62179,
|
|
"rotX": 0.0224553216,
|
|
"rotY": 270.000549,
|
|
"rotZ": 179.77179,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ritual Candles",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 230317,
|
|
"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": "090efe",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16145,
|
|
"posY": 8.670364,
|
|
"posZ": -68.62189,
|
|
"rotX": 359.95755,
|
|
"rotY": 269.9993,
|
|
"rotZ": 180.252472,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Read the Signs",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "efaeeb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16163,
|
|
"posY": 8.619374,
|
|
"posZ": -68.621994,
|
|
"rotX": 0.88382405,
|
|
"rotY": 270.006073,
|
|
"rotZ": 180.837128,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Promise of Power",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605626,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6056": {
|
|
"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": "5ca3f3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614342,
|
|
"posY": 8.66566849,
|
|
"posZ": -68.62184,
|
|
"rotX": 359.970551,
|
|
"rotY": 270.000122,
|
|
"rotZ": 180.063736,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Guts",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "5ca037",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.161705,
|
|
"posY": 8.58206,
|
|
"posZ": -68.62212,
|
|
"rotX": 1.42963934,
|
|
"rotY": 270.017548,
|
|
"rotZ": 181.547058,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spectral Razor",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "406b47",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.49630249,
|
|
"posZ": -68.62186,
|
|
"rotX": 0.0009814379,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.006287,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Guts",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "41065c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.49708509,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.00106901571,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.006912,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ward of Protection",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b725bd",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.41250694,
|
|
"posZ": -68.62183,
|
|
"rotX": 0.00669514248,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0075,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ward of Protection",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "73485a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.46385992,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.0016585812,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.989563,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Arcane Initiate",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "f6f398",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.43040013,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.00475563668,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.030334,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Arcane Initiate",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "188548",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.38283885,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.007883863,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.050186,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Shrivelling",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "2bec0f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16143,
|
|
"posY": 1.33686876,
|
|
"posZ": -68.62188,
|
|
"rotX": 359.576263,
|
|
"rotY": 270.0001,
|
|
"rotZ": 180.012665,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Shrivelling",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "4e756a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16149,
|
|
"posY": 1.31268561,
|
|
"posZ": -68.62188,
|
|
"rotX": 0.009854095,
|
|
"rotY": 270.0005,
|
|
"rotZ": 180.062729,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Holy Rosary",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 230323,
|
|
"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": "5d8018",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -51.04151,
|
|
"posY": 1.68391371,
|
|
"posZ": -71.34151,
|
|
"rotX": 0.0207949076,
|
|
"rotY": 270.0003,
|
|
"rotZ": 0.0168736316,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Crystal Pendulum",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538709,
|
|
"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": "57b096",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.2993,
|
|
"posY": 4.406509,
|
|
"posZ": -76.94565,
|
|
"rotX": 356.702484,
|
|
"rotY": 269.993683,
|
|
"rotZ": 0.0174693856,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Minako Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
631600,
|
|
631700,
|
|
631500
|
|
],
|
|
"CustomDeck": {
|
|
"6316": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521223900489469/1BCCFC2D09D5F1F3B230B9FF5881125D4440E882/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521223900490680/B630100D23690DCA690499D722253CE2DAF4216C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6315": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191711284746323/6535D94C609640643BE6A27BFB57DA9F9739BC06/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "90e514",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -29.1422844,
|
|
"posY": 1.4133693,
|
|
"posZ": -78.4202957,
|
|
"rotX": 355.9955,
|
|
"rotY": 269.9971,
|
|
"rotZ": 0.0183308776,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scorned",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6316": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521223900489469/1BCCFC2D09D5F1F3B230B9FF5881125D4440E882/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bbea9e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -29.2795849,
|
|
"posY": 1.61624181,
|
|
"posZ": -78.55082,
|
|
"rotX": 2.52491426,
|
|
"rotY": 269.9932,
|
|
"rotZ": 0.009346156,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dance of the Geisha",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521223900490680/B630100D23690DCA690499D722253CE2DAF4216C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bb19f4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -29.1195564,
|
|
"posY": 1.50308681,
|
|
"posZ": -78.62353,
|
|
"rotX": 356.411774,
|
|
"rotY": 270.0081,
|
|
"rotZ": 0.0177108217,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Shamisen",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6315": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191711284746323/6535D94C609640643BE6A27BFB57DA9F9739BC06/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "d2d130",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.2277,
|
|
"posY": 1.30550051,
|
|
"posZ": -92.0377,
|
|
"rotX": 0.02080846,
|
|
"rotY": 270.0011,
|
|
"rotZ": 0.016771337,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Bo Wen",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6303": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759447006/C73275CE617DCC984D46A719B398789CE731B78A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759447554/F251D0A001961E7B173A951CED519D578AD0708C/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dd1080",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.53122,
|
|
"posY": 1.3532747,
|
|
"posZ": -90.67142,
|
|
"rotX": 0.0208164081,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.0167678036,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "dd3da9",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6384144,
|
|
"posY": 1.35761964,
|
|
"posZ": -75.6948853,
|
|
"rotX": 0.02090627,
|
|
"rotY": 269.6921,
|
|
"rotZ": 0.01665604,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "df8495",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.2275982,
|
|
"posY": 1.28935385,
|
|
"posZ": -92.0375,
|
|
"rotX": 359.983215,
|
|
"rotY": -9.829039E-05,
|
|
"rotZ": 0.0208343826,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "Bo",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.149159223,
|
|
"g": 0.41450727,
|
|
"b": 0.7329264
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "ce309f",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.4843,
|
|
"posY": 4.37906,
|
|
"posZ": -92.0527649,
|
|
"rotX": 1.28985631,
|
|
"rotY": 269.982269,
|
|
"rotZ": 0.0156770684,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
379021,
|
|
379021,
|
|
379021,
|
|
378621,
|
|
378621,
|
|
378621
|
|
],
|
|
"CustomDeck": {
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"3786": {
|
|
"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": "fbb713",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.31375027,
|
|
"posZ": -72.37815,
|
|
"rotX": 0.000379473262,
|
|
"rotY": 270.0,
|
|
"rotZ": -0.00110391818,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood-Rite",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379021,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "635ee3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.36264,
|
|
"posZ": -72.37815,
|
|
"rotX": 0.259782583,
|
|
"rotY": 269.999023,
|
|
"rotZ": 359.569183,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood-Rite",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379021,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "824b42",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.38382769,
|
|
"posZ": -72.37815,
|
|
"rotX": 0.000303788984,
|
|
"rotY": 270.0,
|
|
"rotZ": -0.000883236469,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood-Rite",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379021,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3e38b9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.37501347,
|
|
"posZ": -72.37815,
|
|
"rotX": 0.000183670752,
|
|
"rotY": 270.0,
|
|
"rotZ": -0.000534181658,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "ed47d7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.40689778,
|
|
"posZ": -72.37815,
|
|
"rotX": 0.02001031,
|
|
"rotY": 270.0,
|
|
"rotZ": -0.00438065128,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "bf3689",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.45155,
|
|
"posZ": -72.37815,
|
|
"rotX": 0.0004096225,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.000216271612,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "389203",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.4098873,
|
|
"posY": 4.486468,
|
|
"posZ": -91.98208,
|
|
"rotX": 0.583373,
|
|
"rotY": 270.014343,
|
|
"rotZ": 0.0145849958,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bo Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
545305,
|
|
368803,
|
|
545315,
|
|
368806,
|
|
379020,
|
|
379931,
|
|
378620,
|
|
368400,
|
|
538615,
|
|
274606,
|
|
538704,
|
|
226318,
|
|
226301,
|
|
368803,
|
|
545313,
|
|
261700,
|
|
379828,
|
|
261700,
|
|
538717,
|
|
368400,
|
|
368806,
|
|
538705,
|
|
226301,
|
|
368802,
|
|
368802,
|
|
226305,
|
|
368509,
|
|
230328,
|
|
226309,
|
|
226331
|
|
],
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"3786": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"2746": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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": "b73feb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1612473,
|
|
"posY": 8.718961,
|
|
"posZ": -68.6217,
|
|
"rotX": 358.857178,
|
|
"rotY": 270.007935,
|
|
"rotZ": 179.2532,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Grete Wagner",
|
|
"Description": "The Purifier",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "33b2ce",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615257,
|
|
"posY": 8.639971,
|
|
"posZ": -68.6218948,
|
|
"rotX": 0.36057353,
|
|
"rotY": 270.000732,
|
|
"rotZ": 180.3091,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Not without a fight!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368803,
|
|
"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": "712b89",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16131,
|
|
"posY": 8.722387,
|
|
"posZ": -68.6217,
|
|
"rotX": 358.8738,
|
|
"rotY": 270.01,
|
|
"rotZ": 179.1321,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "One-Two Punch",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "5f636c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615868,
|
|
"posY": 8.642342,
|
|
"posZ": -68.62193,
|
|
"rotX": 0.554076731,
|
|
"rotY": 270.0011,
|
|
"rotZ": 180.329269,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Take Heart",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368806,
|
|
"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": "6ef78d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.663009,
|
|
"posZ": -68.62183,
|
|
"rotX": 359.97995,
|
|
"rotY": 269.999817,
|
|
"rotZ": 179.936371,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Occult Lexicon",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379020,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "478d66",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1616478,
|
|
"posY": 8.629282,
|
|
"posZ": -68.621994,
|
|
"rotX": 0.7349199,
|
|
"rotY": 270.003662,
|
|
"rotZ": 180.649109,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dream-Enhancing Serum",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379931,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "812406",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16137,
|
|
"posY": 8.689546,
|
|
"posZ": -68.62177,
|
|
"rotX": 359.6056,
|
|
"rotY": 270.001343,
|
|
"rotZ": 179.574188,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hallowed Mirror",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378620,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "8b5cdf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614761,
|
|
"posY": 8.656336,
|
|
"posZ": -68.6218643,
|
|
"rotX": 0.1547179,
|
|
"rotY": 270.000122,
|
|
"rotZ": 180.167053,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eureka!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "7a26bb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1613922,
|
|
"posY": 8.678302,
|
|
"posZ": -68.62179,
|
|
"rotX": 359.614,
|
|
"rotY": 270.001221,
|
|
"rotZ": 179.798965,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Nimble",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b62466",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.161438,
|
|
"posY": 8.663408,
|
|
"posZ": -68.62182,
|
|
"rotX": 359.9213,
|
|
"rotY": 270.0001,
|
|
"rotZ": 179.8691,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Able Bodied",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 274606,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2746": {
|
|
"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": "733693",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16128,
|
|
"posY": 8.733697,
|
|
"posZ": -68.6216354,
|
|
"rotX": 358.691345,
|
|
"rotY": 270.01593,
|
|
"rotZ": 178.781479,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scrying Mirror",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538704,
|
|
"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": "68f209",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16156,
|
|
"posY": 8.652582,
|
|
"posZ": -68.62191,
|
|
"rotX": 0.3711972,
|
|
"rotY": 270.0008,
|
|
"rotZ": 180.2649,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scene of the Crime",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226318,
|
|
"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": "cf3dba",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16119,
|
|
"posY": 8.74692249,
|
|
"posZ": -68.62158,
|
|
"rotX": 358.3072,
|
|
"rotY": 270.021118,
|
|
"rotZ": 178.690842,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Inspiring Presence",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226301,
|
|
"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": "c192e6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1616325,
|
|
"posY": 8.622168,
|
|
"posZ": -68.62194,
|
|
"rotX": 0.856429756,
|
|
"rotY": 270.003265,
|
|
"rotZ": 180.4999,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Not without a fight!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368803,
|
|
"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": "df1ce7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1613274,
|
|
"posY": 8.70671749,
|
|
"posZ": -68.6217346,
|
|
"rotX": 359.2962,
|
|
"rotY": 270.003723,
|
|
"rotZ": 179.369034,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Glory",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 545313,
|
|
"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": "2ea1ba",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16159,
|
|
"posY": 8.619334,
|
|
"posZ": -68.622,
|
|
"rotX": 0.7895153,
|
|
"rotY": 270.005859,
|
|
"rotZ": 180.9769,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Watch this!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "969676",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16139,
|
|
"posY": 8.697501,
|
|
"posZ": -68.62175,
|
|
"rotX": 359.38913,
|
|
"rotY": 270.004,
|
|
"rotZ": 179.347061,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "First Watch",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379828,
|
|
"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": "13dea2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.161705,
|
|
"posY": 8.606386,
|
|
"posZ": -68.62206,
|
|
"rotX": 1.3461132,
|
|
"rotY": 270.0122,
|
|
"rotZ": 181.177689,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Watch this!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "41d9c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.161438,
|
|
"posY": 8.677128,
|
|
"posZ": -68.62182,
|
|
"rotX": 0.0310950764,
|
|
"rotY": 269.999023,
|
|
"rotZ": 179.6802,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Prescient",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538717,
|
|
"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": "cf5d6f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.161705,
|
|
"posY": 8.599337,
|
|
"posZ": -68.62212,
|
|
"rotX": 1.33193827,
|
|
"rotY": 270.016357,
|
|
"rotZ": 181.47374,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eureka!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b10eab",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16135,
|
|
"posY": 8.695934,
|
|
"posZ": -68.62177,
|
|
"rotX": 359.554016,
|
|
"rotY": 270.0031,
|
|
"rotZ": 179.540985,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Take Heart",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368806,
|
|
"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": "7f75e8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1616821,
|
|
"posY": 8.585413,
|
|
"posZ": -68.6220551,
|
|
"rotX": 1.37984335,
|
|
"rotY": 270.0125,
|
|
"rotZ": 181.178833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Azure Flame",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538705,
|
|
"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": "b162bf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.4963851,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0003965692,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.00293,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Inspiring Presence",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226301,
|
|
"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": "b325f1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.50828564,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.0006311459,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.996231,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Resourceful",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b74d15",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.49968731,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.00140069157,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.991165,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Resourceful",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "3e22ad",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.47386086,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.0005239565,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.996674,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Let me handle this!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226305,
|
|
"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": "f2cd78",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.42555857,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.00475883763,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.030334,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Emergency Cache",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "9205f5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.38283885,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.007883863,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.050186,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Shrivelling",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "011017",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16143,
|
|
"posY": 1.33686876,
|
|
"posZ": -68.62188,
|
|
"rotX": 359.576263,
|
|
"rotY": 270.0001,
|
|
"rotZ": 180.012665,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Evidence!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226309,
|
|
"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": "a0bf78",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16149,
|
|
"posY": 1.31268561,
|
|
"posZ": -68.62188,
|
|
"rotX": 0.009854095,
|
|
"rotY": 270.0005,
|
|
"rotZ": 180.062729,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Beat Cop",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226331,
|
|
"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": "108e00",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -25.8316441,
|
|
"posY": 4.37831736,
|
|
"posZ": -92.07553,
|
|
"rotX": 0.0208234489,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.01679119,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bo Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
630000,
|
|
629900,
|
|
630100,
|
|
617200,
|
|
615100,
|
|
617500,
|
|
629800
|
|
],
|
|
"CustomDeck": {
|
|
"6300": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759440782/9202179B2CE810513E37CE347C54EB74AA82508E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6299": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759439364/31472A23563BE279C0DB4CD2923EEFF381F15080/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6301": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759441712/9CAD4E7AC902E6CB70DEBAD6927A95DC2255A259/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6172": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1800852601257309359/FBC15F97478B5ACA498CD6D8538E359548B16CFB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6151": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1751309629108089425/345F42FB38274F8F8EADE697A3468C79D3CD2BFD/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6175": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1800852601257327588/FF3AA85A6F7766469E27E1B242BECDACC2C2E004/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6298": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759438404/3FF4965B9F0B2C47FD0139B54CC3B24462F64F98/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "f51a2e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -9.328632,
|
|
"posY": 1.64545524,
|
|
"posZ": -42.67548,
|
|
"rotX": 2.16111457E-05,
|
|
"rotY": 270.0,
|
|
"rotZ": 178.939621,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Monastic Conspiracy",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6300": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759440782/9202179B2CE810513E37CE347C54EB74AA82508E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "baf353",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -7.88677025,
|
|
"posY": 2.47969031,
|
|
"posZ": -42.72617,
|
|
"rotX": -0.0006198397,
|
|
"rotY": 269.999084,
|
|
"rotZ": 231.626846,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Invigorate",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 629900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6299": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759439364/31472A23563BE279C0DB4CD2923EEFF381F15080/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "052e98",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -8.559753,
|
|
"posY": 1.60041964,
|
|
"posZ": -43.182045,
|
|
"rotX": -0.00411460549,
|
|
"rotY": 269.999,
|
|
"rotZ": 180.0654,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tempest",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6301": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759441712/9CAD4E7AC902E6CB70DEBAD6927A95DC2255A259/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3ddb10",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -8.689998,
|
|
"posY": 1.65741539,
|
|
"posZ": -43.0224876,
|
|
"rotX": 359.477722,
|
|
"rotY": 270.1133,
|
|
"rotZ": 177.183853,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scorch",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6172": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1800852601257309359/FBC15F97478B5ACA498CD6D8538E359548B16CFB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a8015d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -8.326026,
|
|
"posY": 2.206388,
|
|
"posZ": -42.868988,
|
|
"rotX": 0.00230006617,
|
|
"rotY": 269.9903,
|
|
"rotZ": 214.406357,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spark",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 615100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6151": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1751309629108089425/345F42FB38274F8F8EADE697A3468C79D3CD2BFD/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "afab1d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -8.601326,
|
|
"posY": 1.555355,
|
|
"posZ": -42.4925079,
|
|
"rotX": -0.000323815271,
|
|
"rotY": 269.999268,
|
|
"rotZ": 180.000916,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Submerge",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6175": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1800852601257327588/FF3AA85A6F7766469E27E1B242BECDACC2C2E004/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e95ab4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -8.378915,
|
|
"posY": 1.51360524,
|
|
"posZ": -42.6784821,
|
|
"rotX": 1.997013E-05,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mastery",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 629800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6298": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759438404/3FF4965B9F0B2C47FD0139B54CC3B24462F64F98/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "e3bff5",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6359177,
|
|
"posY": 1.36149573,
|
|
"posZ": -62.45662,
|
|
"rotX": 0.0208112821,
|
|
"rotY": 270.0176,
|
|
"rotZ": 0.0167743471,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "ecaa6b",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6354179,
|
|
"posY": 1.35725594,
|
|
"posZ": -76.94142,
|
|
"rotX": 0.0208143126,
|
|
"rotY": 270.0087,
|
|
"rotZ": 0.0167710353,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "ed82ab",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6359177,
|
|
"posY": 1.35920382,
|
|
"posZ": -70.28642,
|
|
"rotX": 0.0208142474,
|
|
"rotY": 270.0092,
|
|
"rotZ": 0.0167715531,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "f1a8b2",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6358128,
|
|
"posY": 1.36379063,
|
|
"posZ": -54.6165237,
|
|
"rotX": 0.0208164826,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.01676817,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "f9f763",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.3001,
|
|
"posY": 1.31449115,
|
|
"posZ": -61.2332,
|
|
"rotX": 0.0208086986,
|
|
"rotY": 269.9998,
|
|
"rotZ": 0.01677094,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "George Barnaby",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 629500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6295": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613218190279/BA489349A76E3483D7F29908133B92057F848135/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1749065613219525163/2096896BC1F56FCDFC84EA3B8F861D1CE77561D4/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fc2eac",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.53531,
|
|
"posY": 1.35254943,
|
|
"posZ": -93.1443253,
|
|
"rotX": 0.0208161827,
|
|
"rotY": 270.0003,
|
|
"rotZ": 0.0167684369,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "fe273b",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.2993,
|
|
"posY": 1.29834247,
|
|
"posZ": -61.2406,
|
|
"rotX": 359.983215,
|
|
"rotY": 8.601029E-05,
|
|
"rotZ": 0.0208484344,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "George",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.9138992,
|
|
"g": 0.7357981,
|
|
"b": 0.2890325
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "58f676",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -26.2937641,
|
|
"posY": 4.521552,
|
|
"posZ": -61.24097,
|
|
"rotX": 346.4655,
|
|
"rotY": 270.030243,
|
|
"rotZ": 0.00724658323,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Essence of the Dream",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379929,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "aac41a",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3001385,
|
|
"posY": 4.4867444,
|
|
"posZ": -61.240963,
|
|
"rotX": 0.02084828,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0168077312,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "George Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
368418,
|
|
538609,
|
|
368400,
|
|
605218,
|
|
379928,
|
|
538811,
|
|
368506,
|
|
368403,
|
|
368418,
|
|
368400,
|
|
447832,
|
|
441025,
|
|
368403,
|
|
632202,
|
|
368506,
|
|
538805,
|
|
447832,
|
|
545308,
|
|
605218,
|
|
368417,
|
|
441025,
|
|
368822,
|
|
368622,
|
|
368402,
|
|
368402,
|
|
368408,
|
|
450614,
|
|
368421,
|
|
226323,
|
|
368432
|
|
],
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"6052": {
|
|
"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
|
|
},
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"4478": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"4410": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6322": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656727601395908060/2C854B8E2CE1E420C9AEF246BE3EC4138B724C1B/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 5,
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"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
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "d829f3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16139,
|
|
"posY": 8.678479,
|
|
"posZ": -68.6218,
|
|
"rotX": 359.640381,
|
|
"rotY": 270.000671,
|
|
"rotZ": 179.874069,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"I've got a plan!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368418,
|
|
"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": "cb7e26",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16144,
|
|
"posY": 8.661687,
|
|
"posZ": -68.62182,
|
|
"rotX": 359.861,
|
|
"rotY": 270.000458,
|
|
"rotZ": 179.922287,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Streetwise",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "dca637",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1612167,
|
|
"posY": 8.73363,
|
|
"posZ": -68.62159,
|
|
"rotX": 358.652618,
|
|
"rotY": 270.016357,
|
|
"rotZ": 178.700287,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eureka!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "df4966",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615677,
|
|
"posY": 8.636025,
|
|
"posZ": -68.6219559,
|
|
"rotX": 0.6600143,
|
|
"rotY": 270.003082,
|
|
"rotZ": 180.598175,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Plan of Action",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605218,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6052": {
|
|
"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": "5011a8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614838,
|
|
"posY": 8.657217,
|
|
"posZ": -68.62186,
|
|
"rotX": 0.10750521,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.082413,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dream Diary",
|
|
"Description": "Untranslated",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379928,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "49f4ab",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16169,
|
|
"posY": 8.608037,
|
|
"posZ": -68.6220551,
|
|
"rotX": 1.1925168,
|
|
"rotY": 270.010162,
|
|
"rotZ": 181.017975,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Whitton Greene",
|
|
"Description": "Hunter of Rare Books",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538811,
|
|
"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": "2d695a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1611748,
|
|
"posY": 8.74624,
|
|
"posZ": -68.62159,
|
|
"rotX": 358.4588,
|
|
"rotY": 270.017853,
|
|
"rotZ": 178.7557,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Perception",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "c58fc6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1612778,
|
|
"posY": 8.70955,
|
|
"posZ": -68.6217,
|
|
"rotX": 358.967926,
|
|
"rotY": 270.007141,
|
|
"rotZ": 179.263062,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "True Understanding",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368403,
|
|
"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": "1f50ba",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16129,
|
|
"posY": 8.721197,
|
|
"posZ": -68.62169,
|
|
"rotX": 358.949432,
|
|
"rotY": 270.0098,
|
|
"rotZ": 179.027573,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"I've got a plan!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368418,
|
|
"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": "0e27e7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614,
|
|
"posY": 8.68764,
|
|
"posZ": -68.6217651,
|
|
"rotX": 359.5952,
|
|
"rotY": 270.001648,
|
|
"rotZ": 179.534439,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eureka!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "4eaae5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615639,
|
|
"posY": 8.642939,
|
|
"posZ": -68.6219,
|
|
"rotX": 0.653991044,
|
|
"rotY": 270.00177,
|
|
"rotZ": 180.510025,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Practice Makes Perfect",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447832,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4478": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774537",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16168,
|
|
"posY": 8.600971,
|
|
"posZ": -68.6220856,
|
|
"rotX": 1.272465,
|
|
"rotY": 270.0125,
|
|
"rotZ": 181.2786,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Astounding Revelation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 441025,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4410": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3f9da0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.161335,
|
|
"posY": 8.712881,
|
|
"posZ": -68.62175,
|
|
"rotX": 359.137665,
|
|
"rotY": 270.004761,
|
|
"rotZ": 179.475327,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "True Understanding",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368403,
|
|
"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": "d386f3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.679414,
|
|
"posZ": -68.62184,
|
|
"rotX": 359.825226,
|
|
"rotY": 270.00058,
|
|
"rotZ": 179.865814,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dr. William T. Maleson",
|
|
"Description": "Working on Something Big",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 632202,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656727601395908060/2C854B8E2CE1E420C9AEF246BE3EC4138B724C1B/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 5,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7436e2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16148,
|
|
"posY": 8.665194,
|
|
"posZ": -68.62186,
|
|
"rotX": 0.0010645123,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.0777,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Perception",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "7ae2e5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1616249,
|
|
"posY": 8.63393,
|
|
"posZ": -68.62196,
|
|
"rotX": 0.8527117,
|
|
"rotY": 270.002533,
|
|
"rotZ": 180.456665,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Disc of Itzamna",
|
|
"Description": "Protective Amulet",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538805,
|
|
"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": "85c57e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615143,
|
|
"posY": 8.648085,
|
|
"posZ": -68.62188,
|
|
"rotX": 0.144454539,
|
|
"rotY": 270.00058,
|
|
"rotZ": 180.197632,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Practice Makes Perfect",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447832,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4478": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "224a40",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1615753,
|
|
"posY": 8.622785,
|
|
"posZ": -68.62195,
|
|
"rotX": 0.7154705,
|
|
"rotY": 270.00235,
|
|
"rotZ": 180.511658,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Safeguard",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 545308,
|
|
"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": "fa8937",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16166,
|
|
"posY": 8.622109,
|
|
"posZ": -68.62202,
|
|
"rotX": 0.99926,
|
|
"rotY": 270.0062,
|
|
"rotZ": 180.741882,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Plan of Action",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605218,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6052": {
|
|
"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": "a1ea91",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1613426,
|
|
"posY": 8.704547,
|
|
"posZ": -68.62173,
|
|
"rotX": 359.276642,
|
|
"rotY": 270.005341,
|
|
"rotZ": 179.274078,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Logical Reasoning",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368417,
|
|
"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": "315ab1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1617432,
|
|
"posY": 8.586346,
|
|
"posZ": -68.62213,
|
|
"rotX": 1.59443474,
|
|
"rotY": 270.016968,
|
|
"rotZ": 181.355438,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Astounding Revelation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 441025,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4410": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6a4c7c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.49270678,
|
|
"posZ": -68.62185,
|
|
"rotX": 359.991,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.942825,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scavenging",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368822,
|
|
"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": "a29883",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.49168193,
|
|
"posZ": -68.62185,
|
|
"rotX": 359.992462,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.952011,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Burglary",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368622,
|
|
"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": "26fa15",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.42027342,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.00310452934,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.001465,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deduction",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "eea83b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.38565111,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.007883951,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.050186,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deduction",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "3e64bc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.867215,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.007782981,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.050125,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mind over Matter",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368408,
|
|
"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": "e564ad",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.769681,
|
|
"posZ": -68.62185,
|
|
"rotX": 3.06010175,
|
|
"rotY": 270.2682,
|
|
"rotZ": 190.015427,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dr. Milan Christopher (Taboo)",
|
|
"Description": "Professor of Entomology",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 450614,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4310c1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16143,
|
|
"posY": 1.33686864,
|
|
"posZ": -68.62188,
|
|
"rotX": 359.576263,
|
|
"rotY": 270.0001,
|
|
"rotZ": 180.012665,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Magnifying Glass",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368421,
|
|
"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": "0ab2c5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16149,
|
|
"posY": 1.31268561,
|
|
"posZ": -68.62188,
|
|
"rotX": 0.009853873,
|
|
"rotY": 270.0005,
|
|
"rotZ": 180.062729,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Physical Training",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226323,
|
|
"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": "90f27a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -58.51794,
|
|
"posY": 1.63748932,
|
|
"posZ": -56.18854,
|
|
"rotX": 0.0208156966,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.016745,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tooth of Eztli",
|
|
"Description": "Mortal Reminder",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "9dcf01",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.2991829,
|
|
"posY": 4.400814,
|
|
"posZ": -61.24097,
|
|
"rotX": 357.38327,
|
|
"rotY": 270.000153,
|
|
"rotZ": 0.017004624,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "George Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
632300,
|
|
602900,
|
|
602900
|
|
],
|
|
"CustomDeck": {
|
|
"6323": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759421276/0AF5D38BB6B76A6680B426BCC92BEAE3BEB8CD62/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6029": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613217977750/F498B68FD1FCA72D0FFAA9F22BCF5B0B2907FBA0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "96d1cb",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -33.8816147,
|
|
"posY": 1.3095727,
|
|
"posZ": -59.94466,
|
|
"rotX": 0.0208081529,
|
|
"rotY": 270.014069,
|
|
"rotZ": 0.0167720933,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tainted Justice",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 632300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6301": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759421276/0AF5D38BB6B76A6680B426BCC92BEAE3BEB8CD62/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "09f611",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -29.2466583,
|
|
"posY": 1.46210623,
|
|
"posZ": -62.231617,
|
|
"rotX": 3.7261107,
|
|
"rotY": 269.98996,
|
|
"rotZ": 0.0132375676,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Solatium",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 602900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6029": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613217977750/F498B68FD1FCA72D0FFAA9F22BCF5B0B2907FBA0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d3ee34",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -29.001215,
|
|
"posY": 1.57345283,
|
|
"posZ": -62.3225,
|
|
"rotX": 0.632423937,
|
|
"rotY": 269.98175,
|
|
"rotZ": 0.0165840965,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Solatium",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 602900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6029": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1749065613217977750/F498B68FD1FCA72D0FFAA9F22BCF5B0B2907FBA0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "fe4fcc",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.6169,
|
|
"posY": 1.31328416,
|
|
"posZ": -61.2416,
|
|
"rotX": 0.0208303239,
|
|
"rotY": 269.926575,
|
|
"rotZ": 0.0167445634,
|
|
"scaleX": 0.7828339,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7828339
|
|
},
|
|
"Nickname": "George Barnaby",
|
|
"Description": "The Lawyer",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6307": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759429319/9F5418807A36296D657F682856B0E3298890D848/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759430015/5A453BF800D128EA415A05B2D03D332067892FAB/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
],
|
|
"AttachedDecals": [
|
|
{
|
|
"Transform": {
|
|
"posX": -0.0021877822,
|
|
"posY": -0.08963572,
|
|
"posZ": -0.00288731651,
|
|
"rotX": 270.0,
|
|
"rotY": 359.869568,
|
|
"rotZ": 0.0,
|
|
"scaleX": 2.00000215,
|
|
"scaleY": 2.00000238,
|
|
"scaleZ": 2.00000262
|
|
},
|
|
"CustomDecal": {
|
|
"Name": "dunwich_back",
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
|
|
"Size": 7.4
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "1370f5",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 6.75700045,
|
|
"posY": 1.30980885,
|
|
"posZ": -63.0812,
|
|
"rotX": 0.0208086483,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.01677105,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Artifact Cards",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"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/1799728983834484241/67F84F6361D45ECF0D645BA10A1F401465F569B3/",
|
|
"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\":{\"298bfa\":{\"lock\":false,\"pos\":{\"x\":49.2785,\"y\":1.307,\"z\":-47.4088},\"rot\":{\"x\":0.0208,\"y\":270.0015,\"z\":0.0168}},\"4774b4\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3083,\"z\":-47.4203},\"rot\":{\"x\":0.0208,\"y\":270.0015,\"z\":0.0168}},\"53c975\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.307,\"z\":-52.0203},\"rot\":{\"x\":0.0208,\"y\":270.0015,\"z\":0.0168}},\"8e3756\":{\"lock\":false,\"pos\":{\"x\":52.9442,\"y\":1.3077,\"z\":-49.7203},\"rot\":{\"x\":0.0208,\"y\":270.0015,\"z\":0.0168}},\"a4bebf\":{\"lock\":false,\"pos\":{\"x\":40.2901,\"y\":1.3037,\"z\":-47.42},\"rot\":{\"x\":0.0208,\"y\":270.0015,\"z\":0.0168}},\"b67664\":{\"lock\":false,\"pos\":{\"x\":40.2901,\"y\":1.3031,\"z\":-49.72},\"rot\":{\"x\":0.0208,\"y\":270.0015,\"z\":0.0168}},\"d262db\":{\"lock\":false,\"pos\":{\"x\":-18.589,\"y\":1.1202,\"z\":-47.2783},\"rot\":{\"x\":359.9792,\"y\":89.985,\"z\":359.9832}},\"db6c4a\":{\"lock\":false,\"pos\":{\"x\":40.2901,\"y\":1.3024,\"z\":-52.02},\"rot\":{\"x\":0.0208,\"y\":270.0015,\"z\":0.0168}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "298bfa",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 49.2785,
|
|
"posY": 1.306997,
|
|
"posZ": -47.4088,
|
|
"rotX": 0.0208080728,
|
|
"rotY": 270.0015,
|
|
"rotZ": 0.0167717058,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Artifacts Discovered!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 604900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6049": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407933826/116E47A50BEC048A35EDD336AE4F381F3A8D0DB2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4774b4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.30832493,
|
|
"posZ": -47.4203,
|
|
"rotX": 0.0208080355,
|
|
"rotY": 270.0015,
|
|
"rotZ": 0.0167715922,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Perilous Expedition (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 602900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6029": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145155562/80363C4470F5714D77CB81534E911ED2D13737FC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "53c975",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.30697846,
|
|
"posZ": -52.0203,
|
|
"rotX": 0.02080819,
|
|
"rotY": 270.0015,
|
|
"rotZ": 0.0167715773,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Family Heirloom (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6223": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759384518/E785396B85010E6FBEFD2E644802E4129AEE3E89/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8e3756",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.30765164,
|
|
"posZ": -49.7203,
|
|
"rotX": 0.0208080374,
|
|
"rotY": 270.0015,
|
|
"rotZ": 0.0167717356,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Prosperity (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 610100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6101": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408007420/5C79F6B08176D7A7B184262B2AE224A25292D7E4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a4bebf",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2901,
|
|
"posY": 1.3037293,
|
|
"posZ": -47.42,
|
|
"rotX": 0.0208080523,
|
|
"rotY": 270.0015,
|
|
"rotZ": 0.0167715661,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Convoy (2)",
|
|
"Description": "Security for Hire",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6220": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910576024/26CAD40C7974CBB8817467F0E0969B9CBCCCB091/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b67664",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2901,
|
|
"posY": 1.30305612,
|
|
"posZ": -49.72,
|
|
"rotX": 0.0208080485,
|
|
"rotY": 270.0015,
|
|
"rotZ": 0.0167717,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Museum Curator (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6219": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910566022/FE03A01F41A121DFBD5324713431AB65A8DEEC11/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d262db",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": -18.5889988,
|
|
"posY": 1.12019575,
|
|
"posZ": -47.2783,
|
|
"rotX": 359.979156,
|
|
"rotY": 89.98501,
|
|
"rotZ": 359.983215,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Artifact Deck Setup",
|
|
"Description": "artifact",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 0.0,
|
|
"b": 0.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-03-16 3:26 p.m.\r\n---\r\n\r\n--- Original Memory Bag by MrStump\r\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\r\n\r\n---@class MemoryListEntry\r\n---@field public position Vector\r\n---@field public rotation Vector\r\n---@field public lock boolean\r\nlocal MemoryListEntry={}\r\n\r\n---@type table<string, MemoryListEntry>\r\nlocal memory_list = {}\r\n\r\nlocal POSTFIX = {\r\n SAVE = \"_memory_object\",\r\n ZONE = \"_memory_zone\",\r\n SHUFFLE = \"_memory_shuffle\"\r\n}\r\n\r\n---@type table<string, any>\r\nlocal BUTTON = {\r\n POSITION = Vector(0, 0.3, -2),\r\n ROTATION = Vector(0, 180, 0),\r\n HEIGHT = 350,\r\n WIDTH = 800,\r\n FONT_SIZE = 250,\r\n COLOR = Color.Black,\r\n FONT_COLOR = Color.White\r\n}\r\n\r\nlocal ipairs = ipairs\r\nlocal pairs = pairs\r\n\r\n---@return string\r\nlocal function get_prefix()\r\n return self:getDescription()\r\nend\r\n\r\nlocal function updateSave()\r\n local data_to_save = {[\"ml\"]=memory_list}\r\n local saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\n---@param label string\r\n---@param action string\r\nlocal function createButton(label, action)\r\n self:clearButtons()\r\n\r\n ---@type CreateClassicUIButton\r\n local parameters = {\r\n label = label,\r\n click_function = action,\r\n function_owner = self\r\n }\r\n\r\n for key, value in pairs(BUTTON) do\r\n parameters[key:lower()] = value\r\n end\r\n\r\n self:createButton(parameters)\r\nend\r\n\r\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\r\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\r\n\r\n---@param tag string\r\n---@param lock boolean\r\n---@return fun(object:TTSObject)\r\nlocal function create_object_callback(tag, lock)\r\n ---@param object TTSObject\r\n return function (object)\r\n object:setLock(lock)\r\n if object:hasTag(tag) then object:shuffle() end\r\n end\r\nend\r\n\r\n---@param object TTSObject\r\nlocal function record_objects(object)\r\n memory_list[object:getGUID()] = {\r\n position = object:getPosition(),\r\n rotation = object:getRotation(),\r\n lock = object:getLock()\r\n }\r\n self:putObject(object)\r\nend\r\n\r\n---@param objects TTSObject[]\r\nlocal function update_objects(objects)\r\n for _, object in ipairs(objects) do\r\n record_objects(object)\r\n end\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction place_objects()\r\n local prefix = get_prefix()\r\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\r\n local content = self.getObjects()\r\n\r\n for _, item in ipairs(content) do\r\n local entry = memory_list[item.guid]\r\n if entry then\r\n self.takeObject {\r\n guid=item.guid,\r\n position=entry.position,\r\n rotation=entry.rotation,\r\n callback_function = create_object_callback(shuffle_tag, entry.lock)\r\n }\r\n end\r\n end\r\n\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\n create_recall_button()\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction recall_objects()\r\n memory_list = {}\r\n local prefix = get_prefix()\r\n\r\n if prefix==\"\" then\r\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\r\n return\r\n end\r\n\r\n local save_tag = prefix .. POSTFIX.SAVE\r\n local zone_tag = prefix .. POSTFIX.ZONE\r\n\r\n local zones = getObjectsWithTag(zone_tag)\r\n if #zones>0 then\r\n for _, zone in ipairs(zones) do\r\n update_objects(zone:getObjects())\r\n end\r\n else\r\n update_objects(getObjectsWithTag(save_tag))\r\n end\r\n updateSave()\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\n create_place_button()\r\nend\r\n\r\nfunction onload(saved_data)\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 memory_list = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memory_list = {}\r\n end\r\n\r\n if self:getQuantity()==0 then\r\n create_recall_button()\r\n else\r\n create_place_button()\r\n end\r\nend",
|
|
"LuaScriptState": "{\"ml\":{\"2a2214\":{\"lock\":false,\"position\":{\"x\":1.09022629261017,\"y\":1.63620948791504,\"z\":5.60209941864014},\"rotation\":{\"x\":359.919738769531,\"y\":270.000061035156,\"z\":180.016830444336}},\"371b1d\":{\"lock\":false,\"position\":{\"x\":-12.7019910812378,\"y\":1.60895907878876,\"z\":-12.9742965698242},\"rotation\":{\"x\":359.920104980469,\"y\":269.999114990234,\"z\":0.0168408360332251}},\"52b042\":{\"lock\":false,\"position\":{\"x\":-3.92758798599243,\"y\":1.602259516716,\"z\":5.75719833374023},\"rotation\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016830444336}},\"73a303\":{\"lock\":false,\"position\":{\"x\":-12.7019548416138,\"y\":1.60828673839569,\"z\":-15.2618179321289},\"rotation\":{\"x\":359.920104980469,\"y\":269.999542236328,\"z\":0.0168403051793575}},\"95174b\":{\"lock\":false,\"position\":{\"x\":-7.97477769851685,\"y\":1.603142619133,\"z\":-10.4664964675903},\"rotation\":{\"x\":359.921630859375,\"y\":270.000396728516,\"z\":180.016952514648}},\"d7b180\":{\"lock\":false,\"position\":{\"x\":-17.1175289154053,\"y\":1.91541957855225,\"z\":-15.2851896286011},\"rotation\":{\"x\":359.920135498047,\"y\":269.867950439453,\"z\":180.017013549805}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "2a2214",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 1.09022629,
|
|
"posY": 1.63620949,
|
|
"posZ": 5.60209942,
|
|
"rotX": 359.919739,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Price Deck",
|
|
"Description": "Shuffle 1 of these cards into the encounter deck everytime an Artifact is put into play.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"artifact_memory_object",
|
|
"artifact_memory_shuffle"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 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": [
|
|
604100,
|
|
604000,
|
|
603900,
|
|
604200,
|
|
603800,
|
|
603700,
|
|
604300
|
|
],
|
|
"CustomDeck": {
|
|
"6041": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147823470/7DC67E6BBD1160E4F3F8749327C8023B085929A0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6040": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147822569/42A5D3E7D5C9D967AFB1DA8CD76A943AE8E092AA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6039": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147821703/6A14551805186CAB0679053C0E3C2B537B1A51B4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6042": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147824991/FD8CB88850FE552B770828C5575A88F9B07ABC64/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6038": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147820923/2178A4D116B01872887E9CE901BDC0FA537E678B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6037": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147819263/17B898C5F78808231CB4D7A0D736E3471C3E2AD8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6043": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147825941/991169D89E19DAAFE9D921EEFFC8A8BAD435F08D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "01c913",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 9.014787,
|
|
"posY": 1.48316264,
|
|
"posZ": 2.09223557,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168727227,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Price (Retribution)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 604100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6041": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147823470/7DC67E6BBD1160E4F3F8749327C8023B085929A0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "677d74",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 9.014786,
|
|
"posY": 1.48383629,
|
|
"posZ": 4.37976074,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0168719534,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Price (Malevolence)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 604000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6040": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147822569/42A5D3E7D5C9D967AFB1DA8CD76A943AE8E092AA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "932fff",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 9.014786,
|
|
"posY": 1.48450983,
|
|
"posZ": 6.6672864,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168725029,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Price (Corruption)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 603900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6039": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147821703/6A14551805186CAB0679053C0E3C2B537B1A51B4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0b79e7",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 9.014787,
|
|
"posY": 1.48248911,
|
|
"posZ": -0.195290238,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.016872406,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Price (Judgment)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 604200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6042": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147824991/FD8CB88850FE552B770828C5575A88F9B07ABC64/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "140f48",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 9.014788,
|
|
"posY": 1.48518348,
|
|
"posZ": 8.954809,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.016872501,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Price (Disorientation)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 603800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6038": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147820923/2178A4D116B01872887E9CE901BDC0FA537E678B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dcb745",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 9.01479,
|
|
"posY": 1.485857,
|
|
"posZ": 11.2423353,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.016872555,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Price (Guilt)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 603700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6037": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147819263/17B898C5F78808231CB4D7A0D736E3471C3E2AD8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dd6b10",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 9.014785,
|
|
"posY": 1.48181546,
|
|
"posZ": -2.4828155,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168713834,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Price (Atonement)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 604300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6043": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147825941/991169D89E19DAAFE9D921EEFFC8A8BAD435F08D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "371b1d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -12.7019911,
|
|
"posY": 1.60895908,
|
|
"posZ": -12.9742966,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9991,
|
|
"rotZ": 0.016840836,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Venture Too Deep",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"artifact_memory_object"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 616500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6165": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592808219/AFBBE82F857770E86E7C72C122EA549B3D568ADC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "52b042",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -3.927588,
|
|
"posY": 1.60225952,
|
|
"posZ": 5.75719833,
|
|
"rotX": 359.919739,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Venture Too Deep",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"artifact_memory_object"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 616600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6166": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592808219/AFBBE82F857770E86E7C72C122EA549B3D568ADC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "73a303",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -12.7019548,
|
|
"posY": 1.60828674,
|
|
"posZ": -15.2618179,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999542,
|
|
"rotZ": 0.0168403052,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Undead Servant",
|
|
"Description": "At Your Service",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"artifact_memory_object"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6052": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407944917/35DD25100E9B4AA7EFD3DD9509C00038593183BB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407945663/91A1A9D4747232C76C9C2169ADE6C03CDD874377/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "95174b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -7.9747777,
|
|
"posY": 1.60314262,
|
|
"posZ": -10.4664965,
|
|
"rotX": 359.921631,
|
|
"rotY": 270.0004,
|
|
"rotZ": 180.016953,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unearth The Artifact",
|
|
"Description": "Flip the card over, and attach to scenario card\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"artifact_memory_object"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6051": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407940037/2A5EC739619D18C2DACCDD3D8D65C545152A8659/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407940405/34D66E16142D80A82F9019DA11BF4848E4590E7C/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d7b180",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -17.1175289,
|
|
"posY": 1.91541958,
|
|
"posZ": -15.28519,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.86795,
|
|
"rotZ": 180.017014,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"artifact_memory_object",
|
|
"artifact_memory_shuffle"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 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": [
|
|
605600,
|
|
608900,
|
|
621800,
|
|
606000,
|
|
622200,
|
|
612400,
|
|
610300,
|
|
610200,
|
|
612300,
|
|
612200,
|
|
611400,
|
|
612100,
|
|
606500,
|
|
621600,
|
|
611500,
|
|
611300,
|
|
608200,
|
|
616800,
|
|
608000,
|
|
607100,
|
|
609900,
|
|
605800,
|
|
609800,
|
|
608300,
|
|
616900,
|
|
611100,
|
|
606300,
|
|
605700,
|
|
607400,
|
|
610400,
|
|
611800,
|
|
607700,
|
|
609600,
|
|
610800,
|
|
606200,
|
|
607300,
|
|
610600,
|
|
609100,
|
|
607200,
|
|
606100,
|
|
606900,
|
|
609300,
|
|
611600,
|
|
606700,
|
|
608800,
|
|
607500,
|
|
608100,
|
|
611200,
|
|
609500,
|
|
607000,
|
|
610700,
|
|
621500,
|
|
609700,
|
|
616700,
|
|
611900,
|
|
605900,
|
|
621700,
|
|
612000,
|
|
609000,
|
|
617000,
|
|
605500
|
|
],
|
|
"CustomDeck": {
|
|
"6056": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407955033/E82B0119F2B70B68C76AD598894DE0B8B6D5BCAF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6089": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407992593/942D8D64915C93183B1847FF6A5D9F6391077EE6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6218": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728983839132772/57053BF6786A9ADBB5B4132DE42F3F86E8DC5230/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6060": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407959398/70D70F3A7491F932F7FBEBC09B8D2F6E75CD9F3B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6222": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910587270/4A4A9BFCA94C7E85F2BCE81CE989E6412480BD6B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6124": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408041862/CADB8045C724CFDB2E764CA0EFFDFDB28754FB03/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6103": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408011874/A34257F71CFE3757D1E8E7ED918B5B5FA08507EE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6102": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408009950/1B6019628C3D15F2AEEC3AFF297D5B80D96F5E6B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408031266/E5104B5AF09062437582A807D7E8CDC6FDE2C034/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6122": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408030227/9371D33D70CC317CF28F122A16206A25959C184F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6114": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408022364/177513E488F335957F74FAF103306BBBBB72957B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6121": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408029134/46059AAA116C6A5E522D6DE3E49BF211638742C0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6065": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407966032/B840D97D9D4009C7D340C1225FCC41C60CB6911F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6216": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728983839131135/5D8DD39A33AA6A8B0B83D8E510637AA1CFF2FC96/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6115": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408023507/5CB64FD081EAAD6BCFB1841E3872DF3E8312ADE9/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6113": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408021395/507986290290E841F8340000ACFBABD37E8C2AEC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6082": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407985202/81685E8FBE3DA0407EA5198AEBE12663478B024E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6168": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592814769/A6327E907ACDA9CC55A046850BD44A480299FA19/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6080": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407982726/F2B6DF2B53EE50936C70AF15CD45F99D18D5C4AE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6071": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407973570/EB2AB7080A8C74D5CD69B86E745F9678236B7584/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6099": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408003935/76D83F760466D2DB084D20FB24B1920EBAF87726/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6058": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407957514/D368C7BDCD46D087BE359A187F59D22A1513430E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6098": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408001993/26874886F082245911966D16F7DDE406D4DD682C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6083": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407986318/5FFD18680BD22F39B5EEC19CFF1324E1CF5B5B28/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6169": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592816023/829609A83E44EF5A9254DF5A4F1B02AB1286A837/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6111": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408019592/5B925C440B191084C0F7CC4F9DD819A47F672DA8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6063": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407963956/E0A644339B79D6710B56B3C2B95785D71391D327/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6057": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407956359/6A490023696CA972F3ABB6BFBC4574509A91E304/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6074": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407976707/7200399825FF86112AFF9630228434424DC08BB4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6104": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408013055/D7E2BA1A3800C2B771797993E91D51EDE33A8DAF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6118": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408025952/5DEFEB0641F8C50F79AF2BF7AD5BBB121B745984/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6077": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407981171/EAA627CDF3C3F689C2A941311F8012DDA7AB0197/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6096": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407999918/700DEAB3658850C1784F9018691C8730150B1BE7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6108": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408018133/14B631351B439BF03414927BB6EB2C97DD50BB97/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6062": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407961357/5DC247A0317A4323C05F9E37768D5171B1292581/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6073": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407975750/BF13F4B396F5087BE164541ACC010ECDF6E27A23/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6106": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408015587/0237C32ABEA0B35F2FDD7EC968F76E64E3E9E1AE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6091": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407994409/E3C1F4169564D5B35BAEC8B825AC273CD262574F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6072": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407974568/26061EB9352219EDB57FA64261752328D84C5D9D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6061": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407960421/8B9DCCF346A2F04B2BEACB20D6F9CC54751C1166/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6069": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407969309/146C2D99288B007AEFF0D9792DF597911E489BBF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6093": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407995854/667131360FFF2F48E3499BF9D29F30ACEAB6E510/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6116": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408024368/0A45AADF2C025F0E62159FA7321EDD1F208D8E8E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6067": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407968178/2C53B598285CC7633BEA6BC8E5681A393A199EF1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6088": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407991294/71FA7AE48678E53EB1BE23241BC0EAD980E2E97D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6075": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407978139/EF789481CB0DCE8CEDA140DB22382DF773B55A5F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6081": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407983750/1C46E487FF26CC9C393C26F0803C12A6B67E442F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6112": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408020557/82BD2FC461AB8ABEC0D7932005A7058B01E1B3D4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6095": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407998833/EE0DF99ADD86287F21D1A12D8E12D761F5CE925C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6070": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407972409/255C461737C19049E420768EB9D92DE6F0E07945/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6107": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408016773/9BD0E45B2E09D563A9993AE2BEC553BC16645926/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6215": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728983839130200/A7FD42455107A5E870D95EBBEC7FA90A0ED13848/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6097": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408001020/570B5B82ED1245022A007EA31877075989C58C2A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6167": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592813661/9D4B6E89EBC1860DFC3613979FA0148B3F407F7A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6119": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408027125/9E00607E1D419EFABC586586B52809824BC00BF1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6059": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407958506/BD0188929831544DFFC2A5C5DA977010ABB6D18A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6217": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728983839131988/AACAC4A1D69A0D1D1DA333A9CAF15C01221D9CCF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6120": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408028191/0DD6E574BF27A8DD9C101EE7ED2667F9FFA4B31B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6090": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407993491/FCA7C07ACBF135448BB8D5CF22266C426B149BC7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6170": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592816995/0D5249CDE062FDDD2263BBDB50F204B165191BF6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6055": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407953903/8D3087912611DB91D0A10F12E85C85D1D57ADA6A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "64cfd0",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200638,
|
|
"posY": 1.73679566,
|
|
"posZ": -7.700002,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.027649,
|
|
"rotZ": 358.228729,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bone Pipe",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6056": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407955033/E82B0119F2B70B68C76AD598894DE0B8B6D5BCAF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "18e329",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 1.97083,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.989532,
|
|
"rotZ": 0.0168421473,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "G'harne Fragments",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 608900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6089": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407992593/942D8D64915C93183B1847FF6A5D9F6391077EE6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b9fede",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1165714,
|
|
"posY": 2.39615822,
|
|
"posZ": -15.2853184,
|
|
"rotX": 359.9759,
|
|
"rotY": 269.819336,
|
|
"rotZ": 170.3123,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pentacle of Planes",
|
|
"Description": "Optional Forbidden",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6218": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728983839132772/57053BF6786A9ADBB5B4132DE42F3F86E8DC5230/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "145c77",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.72978222,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0188,
|
|
"rotZ": 0.0167943668,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Satchel of the Void",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 606000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6060": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407959398/70D70F3A7491F932F7FBEBC09B8D2F6E75CD9F3B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0ecb08",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1201077,
|
|
"posY": 2.34430337,
|
|
"posZ": -15.2800035,
|
|
"rotX": 359.951874,
|
|
"rotY": 270.004578,
|
|
"rotZ": 185.288284,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "T'tka Halot",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6222": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910587270/4A4A9BFCA94C7E85F2BCE81CE989E6412480BD6B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "76ac29",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1199455,
|
|
"posY": 2.30381346,
|
|
"posZ": -15.2857,
|
|
"rotX": 359.951874,
|
|
"rotY": 270.0039,
|
|
"rotZ": 176.656021,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Brazier of Souls",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 612400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6124": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408041862/CADB8045C724CFDB2E764CA0EFFDFDB28754FB03/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b259dc",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 2.07663631,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9972,
|
|
"rotZ": 0.01683322,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hyperborean Crystal",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 610300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6103": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408011874/A34257F71CFE3757D1E8E7ED918B5B5FA08507EE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c96549",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 2.06669068,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0248,
|
|
"rotZ": 0.0167970825,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Nacaal Key",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 610200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6102": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408009950/1B6019628C3D15F2AEEC3AFF297D5B80D96F5E6B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "20886f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200962,
|
|
"posY": 2.2408824,
|
|
"posZ": -7.6999917,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999023,
|
|
"rotZ": 0.0168334357,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Zanthu Tablets",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 612300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408031266/E5104B5AF09062437582A807D7E8CDC6FDE2C034/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "80b7f6",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1212673,
|
|
"posY": 2.681002,
|
|
"posZ": -7.68268,
|
|
"rotX": 359.950348,
|
|
"rotY": 270.030853,
|
|
"rotZ": 24.5255756,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Gruesome Talisman",
|
|
"Description": "Optional Forbidden",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 612200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6122": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408030227/9371D33D70CC317CF28F122A16206A25959C184F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "27dd24",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200981,
|
|
"posY": 2.16406226,
|
|
"posZ": -7.699991,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.018158,
|
|
"rotZ": 0.0168167986,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Book of the Believer",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6114": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408022364/177513E488F335957F74FAF103306BBBBB72957B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ec96d8",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.12026,
|
|
"posY": 2.41233873,
|
|
"posZ": -7.690948,
|
|
"rotX": 359.9349,
|
|
"rotY": 270.0199,
|
|
"rotZ": 10.02103,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scales of Thoth",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 612100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6121": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408029134/46059AAA116C6A5E522D6DE3E49BF211638742C0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d887f4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.7780062,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0111,
|
|
"rotZ": 0.0168086775,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fire of Asshuranipal",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 606500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6065": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407966032/B840D97D9D4009C7D340C1225FCC41C60CB6911F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0dd5e4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1201077,
|
|
"posY": 2.331036,
|
|
"posZ": -15.2800035,
|
|
"rotX": 359.952728,
|
|
"rotY": 270.031433,
|
|
"rotZ": 175.071259,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Summoning Glass",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6216": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728983839131135/5D8DD39A33AA6A8B0B83D8E510637AA1CFF2FC96/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "586429",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 2.17311883,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.019867,
|
|
"rotZ": 0.0168165527,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lamp of Alhazred",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6115": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408023507/5CB64FD081EAAD6BCFB1841E3872DF3E8312ADE9/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "acd7c2",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1199989,
|
|
"posY": 1.61780715,
|
|
"posZ": -3.83000231,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168393627,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eldtown Shards",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6113": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408021395/507986290290E841F8340000ACFBABD37E8C2AEC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d2a5ea",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.9127605,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.014679,
|
|
"rotZ": 0.0168070216,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Black Fan",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 608200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6082": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407985202/81685E8FBE3DA0407EA5198AEBE12663478B024E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d40c0b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -21.3586082,
|
|
"posY": 1.62488818,
|
|
"posZ": 0.153054878,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01684066,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sword of Glory",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 616800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6168": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592814769/A6327E907ACDA9CC55A046850BD44A480299FA19/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "de39db",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 1.89353323,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.00058,
|
|
"rotZ": 0.0168237817,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cabala of Saboth",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 608000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6080": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407982726/F2B6DF2B53EE50936C70AF15CD45F99D18D5C4AE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3689b4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.826079,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999023,
|
|
"rotZ": 0.0168260522,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cursed Sphere",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 607100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6071": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407973570/EB2AB7080A8C74D5CD69B86E745F9678236B7584/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "85fb98",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 2.05726743,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0137,
|
|
"rotZ": 0.0168082528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Yithian Rifle",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 609900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6099": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408003935/76D83F760466D2DB084D20FB24B1920EBAF87726/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "79c999",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.71051919,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9986,
|
|
"rotZ": 0.01682099,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Vach-Viraj Chant",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6058": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407957514/D368C7BDCD46D087BE359A187F59D22A1513430E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cb7f0e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 2.047538,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0013,
|
|
"rotZ": 0.0168379825,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Key of Tawil At-Umr",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 609800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6098": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408001993/26874886F082245911966D16F7DDE406D4DD682C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fbc218",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200581,
|
|
"posY": 1.970041,
|
|
"posZ": -7.700003,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.994781,
|
|
"rotZ": 2.22326088,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Astral Mirror",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 608300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6083": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407986318/5FFD18680BD22F39B5EEC19CFF1324E1CF5B5B28/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "82a4ec",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -20.468111,
|
|
"posY": 1.6224587,
|
|
"posZ": -3.88829517,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0348,
|
|
"rotZ": 0.0167910717,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Milk of Shub-Niggurath",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 616900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6169": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592816023/829609A83E44EF5A9254DF5A4F1B02AB1286A837/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dad88d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 2.1341207,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9995,
|
|
"rotZ": 0.0168450363,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ancient Spear",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6111": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408019592/5B925C440B191084C0F7CC4F9DD819A47F672DA8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3efc48",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.75863206,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.998718,
|
|
"rotZ": 0.0168223679,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Warding Statue",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 606300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6063": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407963956/E0A644339B79D6710B56B3C2B95785D71391D327/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7329e9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.70087874,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.998779,
|
|
"rotZ": 0.0168204363,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Serpent Crown",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6057": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407956359/6A490023696CA972F3ABB6BFBC4574509A91E304/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b82063",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.85515475,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0022,
|
|
"rotZ": 0.0168203227,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dragon Idol",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 607400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6074": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407976707/7200399825FF86112AFF9630228434424DC08BB4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f2136f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 2.08606958,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.000641,
|
|
"rotZ": 0.0168277044,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Twin Scepters",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 610400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6104": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408013055/D7E2BA1A3800C2B771797993E91D51EDE33A8DAF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9e2bba",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 2.19192219,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.998749,
|
|
"rotZ": 0.0168480463,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ruby of R'yleh",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6118": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408025952/5DEFEB0641F8C50F79AF2BF7AD5BBB121B745984/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d385ab",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1202965,
|
|
"posY": 2.04931712,
|
|
"posZ": -7.69182,
|
|
"rotX": 359.927979,
|
|
"rotY": 270.004761,
|
|
"rotZ": 8.644,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tikkoun Elixir",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 607700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6077": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407981171/EAA627CDF3C3F689C2A941311F8012DDA7AB0197/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "33e171",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 2.02836275,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0085,
|
|
"rotZ": 0.01681906,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soul Gem",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 609600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6096": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407999918/700DEAB3658850C1784F9018691C8730150B1BE7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "16ecb9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 2.124511,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0116,
|
|
"rotZ": 0.0168121085,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mask of Sthenelus",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 610800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6108": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408018133/14B631351B439BF03414927BB6EB2C97DD50BB97/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cdf84b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.74902177,
|
|
"posZ": -7.6999917,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.023468,
|
|
"rotZ": 0.0167897474,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spirit Vessel",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 606200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6062": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407961357/5DC247A0317A4323C05F9E37768D5171B1292581/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5b7554",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 1.84570587,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.997528,
|
|
"rotZ": 0.0168335438,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Massa di Requiem per Shuggay",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 607300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6073": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407975750/BF13F4B396F5087BE164541ACC010ECDF6E27A23/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2c73c3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 2.10527,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.018677,
|
|
"rotZ": 0.0168050565,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Heart of Winter",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 610600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6106": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408015587/0237C32ABEA0B35F2FDD7EC968F76E64E3E9E1AE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "acda4b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 1.98990238,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.006226,
|
|
"rotZ": 0.0168175735,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Seven Cryptical Books of Hsan",
|
|
"Description": "Optional Forbidden",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 609100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6091": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407994409/E3C1F4169564D5B35BAEC8B825AC273CD262574F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "76e5c1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.12009,
|
|
"posY": 1.835646,
|
|
"posZ": -7.699993,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999054,
|
|
"rotZ": 0.0168262534,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Crux of Cykranosh",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 607200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6072": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407974568/26061EB9352219EDB57FA64261752328D84C5D9D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cf40b3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 1.73945451,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0143,
|
|
"rotZ": 0.0168016944,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mask of Wisdom",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 606100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6061": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407960421/8B9DCCF346A2F04B2BEACB20D6F9CC54751C1166/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "456be9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.12009,
|
|
"posY": 1.80676436,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9969,
|
|
"rotZ": 0.016827181,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 606900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6069": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407969309/146C2D99288B007AEFF0D9792DF597911E489BBF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "84ce3c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.99936283,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0019,
|
|
"rotZ": 0.0168369263,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Livre d'Ivon",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 609300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6093": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407995854/667131360FFF2F48E3499BF9D29F30ACEAB6E510/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0444e5",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.12009,
|
|
"posY": 2.18234873,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999146,
|
|
"rotZ": 0.0168339256,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cultes des Goules",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6116": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408024368/0A45AADF2C025F0E62159FA7321EDD1F208D8E8E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "df86ca",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.79747438,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9972,
|
|
"rotZ": 0.0168319084,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chime of Ra",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 606700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6067": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407968178/2C53B598285CC7633BEA6BC8E5681A393A199EF1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fb23a0",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.12009,
|
|
"posY": 1.96077967,
|
|
"posZ": -7.699993,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0272,
|
|
"rotZ": 0.0167996418,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tablet of Bast",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 608800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6088": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407991294/71FA7AE48678E53EB1BE23241BC0EAD980E2E97D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d37e33",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 1.86468756,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.995575,
|
|
"rotZ": 0.0168307126,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dhol Chants",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 607500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6075": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407978139/EF789481CB0DCE8CEDA140DB22382DF773B55A5F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5fd583",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 1.90310943,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.998566,
|
|
"rotZ": 0.0168291479,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Book of Dzyan",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 608100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6081": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407983750/1C46E487FF26CC9C393C26F0803C12A6B67E442F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "872295",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200981,
|
|
"posY": 2.14470267,
|
|
"posZ": -7.699991,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9993,
|
|
"rotZ": 0.0168420877,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fetch Stick",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6112": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408020557/82BD2FC461AB8ABEC0D7932005A7058B01E1B3D4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5e3f39",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200924,
|
|
"posY": 2.01864481,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9989,
|
|
"rotZ": 0.0168318432,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Execration Text",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 609500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6095": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407998833/EE0DF99ADD86287F21D1A12D8E12D761F5CE925C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9b7642",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 1.81658685,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.002258,
|
|
"rotZ": 0.0168204624,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Glass of Mortlan",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 607000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6070": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407972409/255C461737C19049E420768EB9D92DE6F0E07945/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c822e8",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.12009,
|
|
"posY": 2.11478233,
|
|
"posZ": -7.69999266,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.0168318991,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sword of Y'ha-Talla",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 610700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6107": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408016773/9BD0E45B2E09D563A9993AE2BEC553BC16645926/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "eb01e7",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.12012,
|
|
"posY": 2.414873,
|
|
"posZ": -15.2800016,
|
|
"rotX": 359.951874,
|
|
"rotY": 270.005737,
|
|
"rotZ": 188.626511,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "True Magick",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6215": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728983839130200/A7FD42455107A5E870D95EBBEC7FA90A0ED13848/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7eeabe",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 2.03804469,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.998474,
|
|
"rotZ": 0.01684391,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mask of the Watcher",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 609700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6097": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408001020/570B5B82ED1245022A007EA31877075989C58C2A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6cec68",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.119997,
|
|
"posY": 1.6189239,
|
|
"posZ": -0.03000101,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.01683943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sword of Saint Jerome",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 616700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6167": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592813661/9D4B6E89EBC1860DFC3613979FA0148B3F407F7A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d41def",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200962,
|
|
"posY": 2.20238066,
|
|
"posZ": -7.6999917,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0112,
|
|
"rotZ": 0.0168125033,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Elder Key",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6119": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408027125/9E00607E1D419EFABC586586B52809824BC00BF1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "73d099",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200542,
|
|
"posY": 2.33664179,
|
|
"posZ": -7.70000362,
|
|
"rotX": 359.922821,
|
|
"rotY": 269.9518,
|
|
"rotZ": 33.6094666,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mask of Vice",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6059": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407958506/BD0188929831544DFFC2A5C5DA977010ABB6D18A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "61553a",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1201172,
|
|
"posY": 2.42965817,
|
|
"posZ": -15.2800016,
|
|
"rotX": 359.951752,
|
|
"rotY": 270.007,
|
|
"rotZ": 190.405075,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Crystal of the Elder Things",
|
|
"Description": "Optional Forbidden",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6217": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728983839131988/AACAC4A1D69A0D1D1DA333A9CAF15C01221D9CCF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f2d241",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 2.21131516,
|
|
"posZ": -7.6999917,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.992676,
|
|
"rotZ": 0.0168549474,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eye of Light and Darkness",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 612000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6120": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262408028191/0DD6E574BF27A8DD9C101EE7ED2667F9FFA4B31B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0098c9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 1.980219,
|
|
"posZ": -7.699992,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.002533,
|
|
"rotZ": 0.0168353375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Elixir of Life",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 609000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6090": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407993491/FCA7C07ACBF135448BB8D5CF22266C426B149BC7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6459b1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200581,
|
|
"posY": 1.61666989,
|
|
"posZ": -7.70001,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01683976,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Brain Case",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6170": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592816995/0D5249CDE062FDDD2263BBDB50F204B165191BF6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "059d83",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.1200657,
|
|
"posY": 1.73030877,
|
|
"posZ": -7.70000172,
|
|
"rotX": 359.952026,
|
|
"rotY": 269.998138,
|
|
"rotZ": 358.0274,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Key to Carcosa",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 605500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6055": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832262407953903/8D3087912611DB91D0A10F12E85C85D1D57ADA6A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648844385613090150/610E5C531526DA2301203C228A90D7DC617F9711/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "db6c4a",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2901,
|
|
"posY": 1.30238283,
|
|
"posZ": -52.02,
|
|
"rotX": 0.0208081417,
|
|
"rotY": 270.0015,
|
|
"rotZ": 0.0167717282,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Edward Jayce (2)",
|
|
"Description": "Psychic Archaeologist",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6222": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759383421/DF3483B6CEF1DA1316012DBC9AD731B603065F5A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
],
|
|
"AttachedDecals": [
|
|
{
|
|
"Transform": {
|
|
"posX": -0.0021877822,
|
|
"posY": -0.08963572,
|
|
"posZ": -0.00288731651,
|
|
"rotX": 270.0,
|
|
"rotY": 359.869568,
|
|
"rotZ": 0.0,
|
|
"scaleX": 2.00000215,
|
|
"scaleY": 2.00000238,
|
|
"scaleZ": 2.00000262
|
|
},
|
|
"CustomDecal": {
|
|
"Name": "dunwich_back",
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
|
|
"Size": 7.4
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "9887f9",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": 37.08149,
|
|
"posY": 1.45274293,
|
|
"posZ": -38.10012,
|
|
"rotX": 359.91806,
|
|
"rotY": 269.9816,
|
|
"rotZ": 0.01697782,
|
|
"scaleX": 0.250000358,
|
|
"scaleY": 0.250000358,
|
|
"scaleZ": 0.250000358
|
|
},
|
|
"Nickname": "Artifact Expansion Data Helper",
|
|
"Description": "Include this for spawning the correct tokens on Artifact Expansion cards",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomMesh": {
|
|
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/",
|
|
"NormalURL": "",
|
|
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
|
|
"Convex": true,
|
|
"MaterialIndex": 2,
|
|
"TypeIndex": 0,
|
|
"CustomShader": {
|
|
"SpecularColor": {
|
|
"r": 0.7222887,
|
|
"g": 0.507659256,
|
|
"b": 0.339915335
|
|
},
|
|
"SpecularIntensity": 0.4,
|
|
"SpecularSharpness": 7.0,
|
|
"FresnelStrength": 0.0
|
|
},
|
|
"CastShadows": true
|
|
},
|
|
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for <LOCATION_NAME>_<GUID> and if\r\nwe find nothing we look for <LOCATION_NAME>\r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"San Francisco\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"\tArkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"\tLondon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rome\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Istanbul\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tokyo_123abc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tokyo_456efg\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Tokyo\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Shanghai_123\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"front\"},\r\n \"Sydney\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\r\n \"Tool Belt (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Tool Belt (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Gabriel\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Flux Stabilizer\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Ancient Crossbow (3):Family Heirloom\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n },\r\n \"Dreadful Revelation\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n },\r\n \"Enchanting Grace\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Enchanting Grace (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Enchanting Grace (5)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Plumb the Void\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Plumb the Void (3):Survivor\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Plumb the Void (3):Mystic\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Leather Pouch\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Tactician (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Gatling Gun (5)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Book of the Believer\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Cultes des Goules\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Dragon Idol\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Elixir of Life\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Fetch Stick\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Heart of Winter\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Key of Tawil At-Umr\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Mask of Wisdom\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Massa di Requiem per Shuggay\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Mi-Go Brain Case\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Milk of Shub-Niggurath\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n },\r\n \"Ruby of R'yleh\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Sword of Saint Jerome\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Sword of Y'ha-Talla\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Vach-Viraj Chant\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Zanthu Tablets\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Lamp of Alhazred\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Soul Gem\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"Warding Statue\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Yithian Rifle\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\n \"Painkillers (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\n \"Forbidden Knowledge (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\n \"Solatium\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 2\n },\r\n \"xxx\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n }\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\r\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\r\n local dataHelper = getObjectFromGUID('708279')\r\n dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend\r\n",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bc9bc6",
|
|
"Name": "Custom_PDF",
|
|
"Transform": {
|
|
"posX": 6.6076,
|
|
"posY": 1.313581,
|
|
"posZ": -50.0096,
|
|
"rotX": 0.020800788,
|
|
"rotY": 270.026825,
|
|
"rotZ": 0.0167809743,
|
|
"scaleX": 2.17822933,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.17822933
|
|
},
|
|
"Nickname": "Artifact Expansion Guide",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomPDF": {
|
|
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1750192092559293716/67ABB431025A5F1066BE1AFE59F1467320E4B295/",
|
|
"PDFPassword": "",
|
|
"PDFPage": 0,
|
|
"PDFPageOffset": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "defb26",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 6.756999,
|
|
"posY": 1.30816233,
|
|
"posZ": -68.7062,
|
|
"rotX": 0.0208085887,
|
|
"rotY": 270.000244,
|
|
"rotZ": 0.0167712457,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Investigators",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"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/1749065613220125151/C6B04E4FEB703F357A01074BC39D286847EA418E/",
|
|
"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\":{\"0de2c4\":{\"lock\":false,\"pos\":{\"x\":-16.6275,\"y\":1.3599,\"z\":-67.808},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"0e3906\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3122,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"13a465\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3133,\"z\":-61.2414},\"rot\":{\"x\":0.0208,\"y\":270.017,\"z\":0.0168}},\"226716\":{\"lock\":false,\"pos\":{\"x\":-16.6275,\"y\":1.3592,\"z\":-70.278},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"2bff9c\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2961,\"z\":-69.0606},\"rot\":{\"x\":359.9832,\"y\":0.0289,\"z\":0.0208}},\"307044\":{\"lock\":false,\"pos\":{\"x\":-16.6276,\"y\":1.355,\"z\":-84.8056},\"rot\":{\"x\":0.0208,\"y\":270.0222,\"z\":0.0168}},\"3ddfeb\":{\"lock\":false,\"pos\":{\"x\":-16.6268,\"y\":1.3546,\"z\":-86.006},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"41bfc7\":{\"lock\":false,\"pos\":{\"x\":-16.6425,\"y\":1.3619,\"z\":-61.2205},\"rot\":{\"x\":0.0208,\"y\":270.0109,\"z\":0.0168}},\"4ad11b\":{\"lock\":false,\"pos\":{\"x\":-16.627,\"y\":1.3573,\"z\":-76.933},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"543164\":{\"lock\":false,\"pos\":{\"x\":-16.6277,\"y\":1.3596,\"z\":-69.0477},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"5f4b38\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.3099,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"6330da\":{\"lock\":false,\"pos\":{\"x\":-16.6275,\"y\":1.3638,\"z\":-54.6081},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"6d9f16\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"750b6f\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3168,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"779aa6\":{\"lock\":false,\"pos\":{\"x\":-16.626,\"y\":1.3553,\"z\":-83.5289},\"rot\":{\"x\":0.0208,\"y\":269.998,\"z\":0.0168}},\"9e80b9\":{\"lock\":false,\"pos\":{\"x\":-16.6275,\"y\":1.3642,\"z\":-53.3778},\"rot\":{\"x\":0.0208,\"y\":269.9838,\"z\":0.0168}},\"a8246c\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3156,\"z\":-53.4381},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"b564f3\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3087,\"z\":-76.946},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"b77c53\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.311,\"z\":-69.0756},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"b9fc9d\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.3006,\"z\":-53.4369},\"rot\":{\"x\":359.9832,\"y\":0,\"z\":0.0208}},\"bde4a6\":{\"lock\":false,\"pos\":{\"x\":-16.6275,\"y\":1.3645,\"z\":-52.1394},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"c3e12f\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.2914,\"z\":-84.818},\"rot\":{\"x\":359.9832,\"y\":-0.0008,\"z\":0.0208}},\"ced1e0\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.2937,\"z\":-76.9456},\"rot\":{\"x\":359.9832,\"y\":0.0003,\"z\":0.0208}},\"d6fdbf\":{\"lock\":false,\"pos\":{\"x\":-16.6274,\"y\":1.3615,\"z\":-62.4483},\"rot\":{\"x\":0.0208,\"y\":269.9652,\"z\":0.0168}},\"d9fb86\":{\"lock\":false,\"pos\":{\"x\":-16.6275,\"y\":1.3569,\"z\":-78.1631},\"rot\":{\"x\":0.0208,\"y\":270.0087,\"z\":0.0168}},\"dced09\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3064,\"z\":-84.8185},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"de216f\":{\"lock\":false,\"pos\":{\"x\":-16.6425,\"y\":1.3622,\"z\":-59.9911},\"rot\":{\"x\":0.0208,\"y\":270.0107,\"z\":0.0168}},\"e04b48\":{\"lock\":false,\"pos\":{\"x\":-16.6277,\"y\":1.3576,\"z\":-75.6928},\"rot\":{\"x\":0.0208,\"y\":269.9874,\"z\":0.0168}},\"e3a45e\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.2983,\"z\":-61.241},\"rot\":{\"x\":359.9832,\"y\":0.0006,\"z\":0.0208}},\"f1896b\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3145,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "0de2c4",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6233177,
|
|
"posY": 1.359935,
|
|
"posZ": -67.80382,
|
|
"rotX": 0.0208161324,
|
|
"rotY": 269.9998,
|
|
"rotZ": 0.0167680047,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "0e3906",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.2959,
|
|
"posY": 1.3122015,
|
|
"posZ": -69.0607,
|
|
"rotX": 0.02080872,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.01677129,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Monterey Jack",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 573000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5730": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716430341/BE5651C47A29AF24E7978FE4FC8DBE8266CFD4C6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716430629/E42A404CE0C63FA9777FBCF1DB111DAE61CA09B5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "13a465",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.6169,
|
|
"posY": 1.31328416,
|
|
"posZ": -61.2414,
|
|
"rotX": 0.0208038688,
|
|
"rotY": 270.017,
|
|
"rotZ": 0.0167774614,
|
|
"scaleX": 0.7828339,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7828339
|
|
},
|
|
"Nickname": "Kate Winthrop",
|
|
"Description": "The Scientist",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6307": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750192534027688850/F322540A8E3FEF830BE19C1FBCEDE7220108B587/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1750192534027631111/F263549EABAB0631D801346B0E857D75FA4C6710/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "226716",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6233158,
|
|
"posY": 1.35921192,
|
|
"posZ": -70.27382,
|
|
"rotX": 0.0208163355,
|
|
"rotY": 269.9995,
|
|
"rotZ": 0.0167676341,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "2bff9c",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.3001976,
|
|
"posY": 1.29605317,
|
|
"posZ": -69.0606,
|
|
"rotX": 359.983215,
|
|
"rotY": 0.0289105866,
|
|
"rotZ": 0.0208247583,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "Jack",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.217192888,
|
|
"g": 0.5981638,
|
|
"b": 0.333269656
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "1d867d",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3001919,
|
|
"posY": 4.366659,
|
|
"posZ": -69.060585,
|
|
"rotX": 0.0207940135,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167828165,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Monterey Starter Bonded Cards",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
378621,
|
|
378621,
|
|
378621
|
|
],
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "9075e3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614876,
|
|
"posY": 1.313402,
|
|
"posZ": -72.37818,
|
|
"rotX": 0.00321581843,
|
|
"rotY": 269.999054,
|
|
"rotZ": 359.9842,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "9bc395",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614532,
|
|
"posY": 1.34095836,
|
|
"posZ": -72.37788,
|
|
"rotX": 0.0226687044,
|
|
"rotY": 269.996521,
|
|
"rotZ": 359.173462,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "53f076",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.383412,
|
|
"posZ": -72.3781357,
|
|
"rotX": 0.00257302169,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.987366,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "775496",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.29236,
|
|
"posY": 4.51887846,
|
|
"posZ": -69.06097,
|
|
"rotX": 1.32904625,
|
|
"rotY": 270.0081,
|
|
"rotZ": 0.029425703,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Monterey Survivor Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
368706,
|
|
368432,
|
|
266319,
|
|
368708,
|
|
274608,
|
|
553106,
|
|
538615,
|
|
261700,
|
|
368807,
|
|
378620,
|
|
277607,
|
|
368705,
|
|
538608,
|
|
538604,
|
|
538607,
|
|
266322,
|
|
538805,
|
|
266321,
|
|
274607,
|
|
450618,
|
|
450616,
|
|
368619,
|
|
368832,
|
|
368508,
|
|
368504,
|
|
368506,
|
|
368515,
|
|
368810,
|
|
368631,
|
|
538609
|
|
],
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"2663": {
|
|
"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
|
|
},
|
|
"2746": {
|
|
"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
|
|
},
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"3786": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"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
|
|
},
|
|
"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": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "cc6b14",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Daring Maneuver",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368706,
|
|
"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": "c1a687",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tooth of Eztli",
|
|
"Description": "Mortal Reminder",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "a5087b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": ".25 Automatic",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266319,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "f6ff32",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Narrow Escape",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368708,
|
|
"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": "6fa7fa",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Track Shoes",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 274608,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2746": {
|
|
"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": "31cfbf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Breaking and Entering",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 553106,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b8843c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Nimble",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "c40cb4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Watch this!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "050ba1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Live and Learn",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "312d38",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hallowed Mirror",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378620,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "c7d9b5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Enchanted Blade",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "dcdcea",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"You handle this one!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "dfbc13",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Leather Jacket",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538608,
|
|
"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": "f32343",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mauser C96",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538604,
|
|
"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": "ad0ef0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lonnie Ritter",
|
|
"Description": "Feisty Mechanic",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538607,
|
|
"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": "17d34b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faustian Bargain",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266322,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "d6c44a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Disc of Itzamna",
|
|
"Description": "Protective Amulet",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538805,
|
|
"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": "5ec6d0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Obfuscation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266321,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "0bea17",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act of Desperation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 274607,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2746": {
|
|
"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": "5a51d1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sleight of Hand (Taboo)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 450618,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "308967",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Quick Thinking (Taboo)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 450616,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dc3b07",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.48878753,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.00156218151,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.990082,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lone Wolf",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368619,
|
|
"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": "ffdeb5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.3977592,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.000253417675,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.998459,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Peter Sylvestre",
|
|
"Description": "Big Man on Campus",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "acb83a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.420247,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.003855099,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.001617,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unexpected Courage",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "679b13",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.371292,
|
|
"posZ": -68.62186,
|
|
"rotX": 0.00507058855,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.031982,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Manual Dexterity",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "c6ac19",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.37151587,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.008410829,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.053482,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Perception",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "bb1cce",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.382791,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.008411173,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.053482,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Flashlight",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "ce0dd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614456,
|
|
"posY": 1.33660448,
|
|
"posZ": -68.6219,
|
|
"rotX": 359.586151,
|
|
"rotY": 270.0001,
|
|
"rotZ": 180.0127,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lucky!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "eaa415",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16148,
|
|
"posY": 1.31262577,
|
|
"posZ": -68.62193,
|
|
"rotX": 0.0105143161,
|
|
"rotY": 269.999756,
|
|
"rotZ": 180.066864,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Leo De Luca",
|
|
"Description": "The Louisiana Lion",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368631,
|
|
"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": "a973aa",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -43.17588,
|
|
"posY": 1.63603342,
|
|
"posZ": -71.05729,
|
|
"rotX": 0.0208117273,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.01677465,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Streetwise",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b91b01",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.300169,
|
|
"posY": 4.354541,
|
|
"posZ": -69.060585,
|
|
"rotX": 0.0246254429,
|
|
"rotY": 270.0108,
|
|
"rotZ": 0.0147008467,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Jack Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
593100,
|
|
622200,
|
|
593000
|
|
],
|
|
"CustomDeck": {
|
|
"5931": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145087041/DDB20EFD9E8755CBBAD7F0C5A08A8B3DA11707B5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6222": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910582825/393A02A345905952347B0485A3ED614D0C5155F0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"5930": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145084856/DADFC401926214E05ABE6FD21FCF77485C2B8E49/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "deb101",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -30.728714,
|
|
"posY": 1.31053817,
|
|
"posZ": -65.26802,
|
|
"rotX": 0.0233688727,
|
|
"rotY": 270.0158,
|
|
"rotZ": 0.0851880759,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Price of Greed",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 593100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5931": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145087041/DDB20EFD9E8755CBBAD7F0C5A08A8B3DA11707B5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a318c4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -30.79285,
|
|
"posY": 1.38567865,
|
|
"posZ": -65.34924,
|
|
"rotX": 1.54565513,
|
|
"rotY": 270.165253,
|
|
"rotZ": 0.0252748653,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bull Whip",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6222": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910582825/393A02A345905952347B0485A3ED614D0C5155F0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bfeb77",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -31.31818,
|
|
"posY": 1.4158932,
|
|
"posZ": -65.2360153,
|
|
"rotX": 359.470947,
|
|
"rotY": 269.9989,
|
|
"rotZ": 0.133042961,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Excavation",
|
|
"Description": "Digging for the Truth",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 593000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5930": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145084856/DADFC401926214E05ABE6FD21FCF77485C2B8E49/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "307044",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6234169,
|
|
"posY": 1.35495961,
|
|
"posZ": -84.80142,
|
|
"rotX": 0.0208100528,
|
|
"rotY": 270.0222,
|
|
"rotZ": 0.01677577,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "3ddfeb",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6226177,
|
|
"posY": 1.3546083,
|
|
"posZ": -86.0018158,
|
|
"rotX": 0.0208160989,
|
|
"rotY": 269.9995,
|
|
"rotZ": 0.0167677309,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "41bfc7",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6383171,
|
|
"posY": 1.36185777,
|
|
"posZ": -61.2163162,
|
|
"rotX": 0.0208135024,
|
|
"rotY": 270.0109,
|
|
"rotZ": 0.0167720169,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "4ad11b",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.62282,
|
|
"posY": 1.35726428,
|
|
"posZ": -76.92882,
|
|
"rotX": 0.02081696,
|
|
"rotY": 269.9997,
|
|
"rotZ": 0.0167679451,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "543164",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6235161,
|
|
"posY": 1.359572,
|
|
"posZ": -69.04352,
|
|
"rotX": 0.0208162069,
|
|
"rotY": 269.9995,
|
|
"rotZ": 0.0167676285,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "5f4b38",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.2936,
|
|
"posY": 1.30989552,
|
|
"posZ": -76.9415,
|
|
"rotX": 0.0208088215,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167707037,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Agatha Crane",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 592200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5922": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145062009/9AE826BA18D64122582A0C84E7A284D3451DE502/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145062539/3A1144F014A8CC5AA736A1CCFC7BEB1C801E2612/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6330da",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6233215,
|
|
"posY": 1.36379886,
|
|
"posZ": -54.6039124,
|
|
"rotX": 0.0208167732,
|
|
"rotY": 270.0002,
|
|
"rotZ": 0.0167680625,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "6d9f16",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.2998,
|
|
"posY": 1.30758762,
|
|
"posZ": -84.8182,
|
|
"rotX": 0.0208088458,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.01677121,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Darrell Simmons",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 591400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5914": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145034360/6EC2532F9015844CFFB1D3395D4B711BABC278B2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145033212/555F90880D725A6580A4E4C53BE1044D58C93306/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "750b6f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.3,
|
|
"posY": 1.31677353,
|
|
"posZ": -53.4358,
|
|
"rotX": 0.02080877,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.016771039,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Daniela Reyes",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 561100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5611": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1664605116697405898/759D878C3662D9A2602A7F1F10A0E57F3BC67DCB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1664605116697406140/78FB1A8C88EEF50CFB59E73A47856D1CB5A1C4E8/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "779aa6",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6218147,
|
|
"posY": 1.35533381,
|
|
"posZ": -83.52472,
|
|
"rotX": 0.0208168346,
|
|
"rotY": 269.998,
|
|
"rotZ": 0.016767377,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "9e80b9",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6233158,
|
|
"posY": 1.364159,
|
|
"posZ": -53.3736153,
|
|
"rotX": 0.0208211858,
|
|
"rotY": 269.9838,
|
|
"rotZ": 0.0167621,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "a8246c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.6139,
|
|
"posY": 1.3155694,
|
|
"posZ": -53.4381,
|
|
"rotX": 0.0208085217,
|
|
"rotY": 270.0003,
|
|
"rotZ": 0.01677129,
|
|
"scaleX": 0.7828339,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7828339
|
|
},
|
|
"Nickname": "Daniela Reyes",
|
|
"Description": "The Mechanic",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 616300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6163": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592801509/96B32872F331C6BF6CD55E5FE1512E4495FED7D6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145106895/F333C2EFC1472F3B1697BD1BD49F1ACEBEC30001/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b564f3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.6157,
|
|
"posY": 1.30868769,
|
|
"posZ": -76.946,
|
|
"rotX": 0.0208088849,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0167712271,
|
|
"scaleX": 0.7828339,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7828339
|
|
},
|
|
"Nickname": "Agatha Crane",
|
|
"Description": "The Parapsychologist",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6216": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750192534027634629/7DAD6AA03F0C3B15D4B83ABF025E637867B95673/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1750192534027634986/5CE52B4A162D60E21E53FF6DE453DC29DB07FEE6/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b77c53",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.6157,
|
|
"posY": 1.31099141,
|
|
"posZ": -69.0756,
|
|
"rotX": 0.0208086688,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167711154,
|
|
"scaleX": 0.7815854,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7815854
|
|
},
|
|
"Nickname": "Monterey Jack",
|
|
"Description": "The Archaeologist",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6214": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728943667470911/A14052E9E5A7FBEA8037672B285FDF9916264AD2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145081635/D23DD180B3487C9719916536B1C62671F234401C/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b9fc9d",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.3,
|
|
"posY": 1.30062616,
|
|
"posZ": -53.4369,
|
|
"rotX": 359.983215,
|
|
"rotY": -1.16527272E-05,
|
|
"rotZ": 0.0208510589,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "Daniela",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.1491597,
|
|
"g": 0.414507776,
|
|
"b": 0.7329264
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "d43832",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3000126,
|
|
"posY": 4.371245,
|
|
"posZ": -53.4368553,
|
|
"rotX": 0.0208425317,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.01678413,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Daniela Starter Bonded Cards",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
378621,
|
|
378621,
|
|
378621
|
|
],
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "3ad803",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614876,
|
|
"posY": 1.313402,
|
|
"posZ": -72.37818,
|
|
"rotX": 0.00321589387,
|
|
"rotY": 269.999054,
|
|
"rotZ": 359.9842,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "b88c17",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614532,
|
|
"posY": 1.34095836,
|
|
"posZ": -72.37788,
|
|
"rotX": 0.0226687044,
|
|
"rotY": 269.996521,
|
|
"rotZ": 359.173462,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "53f076",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.383412,
|
|
"posZ": -72.3781357,
|
|
"rotX": 0.00257302169,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.987366,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Soothing Melody",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "aff35f",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3000126,
|
|
"posY": 4.501193,
|
|
"posZ": -53.4368553,
|
|
"rotX": 0.0208431724,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167836118,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Daniela Survivor Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
550805,
|
|
226322,
|
|
538603,
|
|
379827,
|
|
274607,
|
|
368802,
|
|
277607,
|
|
274608,
|
|
266315,
|
|
277813,
|
|
430810,
|
|
368827,
|
|
378620,
|
|
545313,
|
|
545308,
|
|
545304,
|
|
226332,
|
|
553100,
|
|
266311,
|
|
379829,
|
|
368829,
|
|
226305,
|
|
226310,
|
|
368815,
|
|
368515,
|
|
368810,
|
|
368421,
|
|
226302,
|
|
226327,
|
|
368822
|
|
],
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"2746": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"2663": {
|
|
"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
|
|
},
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"4308": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"3786": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"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
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "5888da",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Old Keyring",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 550805,
|
|
"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": "4d971e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Survival Knife",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "cc11e4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lockpicks",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538603,
|
|
"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": "91e53c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Daring",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "0bea17",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act of Desperation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 274607,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2746": {
|
|
"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": "334f03",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Resourceful",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "c7d9b5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Enchanted Blade",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "6fa7fa",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Track Shoes",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 274608,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2746": {
|
|
"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": "4f3142",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cryptographic Cipher",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "5ada0a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hawk-Eye Folding Camera",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277813,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b9bb2a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fingerprint Kit",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430810,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4308": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e66002",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lantern",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368827,
|
|
"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": "312d38",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hallowed Mirror",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378620,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "273584",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Glory",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 545313,
|
|
"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": "8d6ae6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Safeguard",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 545308,
|
|
"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": "52c686",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Flesh Ward",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 545304,
|
|
"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": "0e2987",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Venturer",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226332,
|
|
"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": "55fc3d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Riot Whistle",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 553100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cc1ef3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Book of Psalms",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266311,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "08e5a6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tetsuo Mori",
|
|
"Description": "Too Noble for His Own Good",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379829,
|
|
"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": "3fe6de",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Gravedigger's Shovel",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "36c0cb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Let me handle this!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226305,
|
|
"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": "831b6b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.49854708,
|
|
"posZ": -68.6218262,
|
|
"rotX": -0.00350316172,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.977829,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Prepared for the Worst",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "59d89b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.5131917,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.00140877068,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.991,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Oops!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368815,
|
|
"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": "bb1cce",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.505561,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.004202589,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.026184,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Flashlight",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "ce0dd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614761,
|
|
"posY": 1.43346286,
|
|
"posZ": -68.62189,
|
|
"rotX": 0.006925225,
|
|
"rotY": 269.999939,
|
|
"rotZ": 180.043167,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lucky!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "8cc0a6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.77978528,
|
|
"posZ": -68.62185,
|
|
"rotX": 3.24823785,
|
|
"rotY": 270.276733,
|
|
"rotZ": 189.736664,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Magnifying Glass",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368421,
|
|
"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": "889121",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16129,
|
|
"posY": 1.33779252,
|
|
"posZ": -68.6218262,
|
|
"rotX": 359.543884,
|
|
"rotY": 269.999847,
|
|
"rotZ": 180.0096,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Vicious Blow",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "86ee68",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614761,
|
|
"posY": 1.31282222,
|
|
"posZ": -68.62193,
|
|
"rotX": 0.008647865,
|
|
"rotY": 269.999573,
|
|
"rotZ": 180.053986,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Machete",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226327,
|
|
"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": "1b76c9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -42.4573746,
|
|
"posY": 1.6625545,
|
|
"posZ": -48.5410042,
|
|
"rotX": 0.02061682,
|
|
"rotY": 269.992828,
|
|
"rotZ": 1.142802,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scavenging",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368822,
|
|
"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": "91ab4d",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3000126,
|
|
"posY": 4.50121546,
|
|
"posZ": -53.4368553,
|
|
"rotX": 0.0208335314,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167782456,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Daniela Rogue Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
430810,
|
|
277607,
|
|
550805,
|
|
277813,
|
|
545304,
|
|
226322,
|
|
545308,
|
|
266315,
|
|
379827,
|
|
553100,
|
|
431006,
|
|
378620,
|
|
368710,
|
|
261700,
|
|
226332,
|
|
368829,
|
|
368827,
|
|
379829,
|
|
545313,
|
|
266311,
|
|
538603,
|
|
226305,
|
|
261703,
|
|
226310,
|
|
368717,
|
|
368515,
|
|
368421,
|
|
226302,
|
|
226327,
|
|
538607
|
|
],
|
|
"CustomDeck": {
|
|
"4308": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"2663": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"4310": {
|
|
"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
|
|
},
|
|
"3786": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "b9bb2a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fingerprint Kit",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430810,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4308": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c7d9b5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Enchanted Blade",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "5888da",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Old Keyring",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 550805,
|
|
"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": "5ada0a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hawk-Eye Folding Camera",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277813,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "52c686",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Flesh Ward",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 545304,
|
|
"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": "4d971e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Survival Knife",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "8d6ae6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Safeguard",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 545308,
|
|
"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": "4f3142",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cryptographic Cipher",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "91e53c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Daring",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "55fc3d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Riot Whistle",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 553100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4e1d91",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Steadfast",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 431006,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4310": {
|
|
"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": "312d38",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hallowed Mirror",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 378620,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3786": {
|
|
"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": "819aee",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sleight of Hand",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368710,
|
|
"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": "c40cb4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Watch this!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "0e2987",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Venturer",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226332,
|
|
"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": "3fe6de",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Gravedigger's Shovel",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "e66002",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lantern",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368827,
|
|
"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": "08e5a6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tetsuo Mori",
|
|
"Description": "Too Noble for His Own Good",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379829,
|
|
"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": "273584",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Glory",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 545313,
|
|
"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": "cc1ef3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Book of Psalms",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266311,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "cc11e4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lockpicks",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538603,
|
|
"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": "36c0cb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.49065137,
|
|
"posZ": -68.62185,
|
|
"rotX": -5.628951E-05,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.99971,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Let me handle this!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226305,
|
|
"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": "99989c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.427779,
|
|
"posZ": -68.62184,
|
|
"rotX": 0.005164078,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.006165,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Quick Thinking",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "831b6b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.38448858,
|
|
"posZ": -68.62185,
|
|
"rotX": 359.9887,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.928131,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Prepared for the Worst",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b4ad29",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.40753615,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.00332343369,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.00148,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Contraband",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368717,
|
|
"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": "bb1cce",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.37156379,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.007859283,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0502,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Flashlight",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "8cc0a6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.382839,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.007859405,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0502,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Magnifying Glass",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368421,
|
|
"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": "889121",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16143,
|
|
"posY": 1.33686864,
|
|
"posZ": -68.62187,
|
|
"rotX": 359.576263,
|
|
"rotY": 270.0001,
|
|
"rotZ": 180.012665,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Vicious Blow",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "86ee68",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614876,
|
|
"posY": 1.31268573,
|
|
"posZ": -68.6218643,
|
|
"rotX": 0.00982345,
|
|
"rotY": 270.0005,
|
|
"rotZ": 180.062744,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Machete",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 226327,
|
|
"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": "ad0ef0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -46.4995766,
|
|
"posY": 1.64140809,
|
|
"posZ": -48.5078468,
|
|
"rotX": 0.0208082888,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.01677013,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lonnie Ritter",
|
|
"Description": "Feisty Mechanic",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538607,
|
|
"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": "71a9c6",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3000031,
|
|
"posY": 4.359008,
|
|
"posZ": -53.4368477,
|
|
"rotX": 0.0208438337,
|
|
"rotY": 269.9998,
|
|
"rotZ": 0.0167877246,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Daniela Upgrades",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
595100,
|
|
595000,
|
|
594900
|
|
],
|
|
"CustomDeck": {
|
|
"5951": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145117902/42C6A9E356FE909CA91C8859F700CEB694655863/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"5950": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145116836/0F6CB77F7D2FB0D57FBFCAC7A86294ADA1D97523/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"5949": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145115730/C46C642EC371055417296CC09A8D0297FC095CDC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "f946de",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -36.8923035,
|
|
"posY": 1.312169,
|
|
"posZ": -47.3395081,
|
|
"rotX": 0.0208086167,
|
|
"rotY": 269.999817,
|
|
"rotZ": 0.016771147,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lonnie's Wrench (4)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 595100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5951": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145117902/42C6A9E356FE909CA91C8859F700CEB694655863/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1f7e08",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -36.9943581,
|
|
"posY": 1.35402107,
|
|
"posZ": -47.4442253,
|
|
"rotX": 0.0208086967,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01677113,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tool Belt (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 595000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5950": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145116836/0F6CB77F7D2FB0D57FBFCAC7A86294ADA1D97523/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "77856e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -36.78559,
|
|
"posY": 1.38786721,
|
|
"posZ": -47.81138,
|
|
"rotX": 0.0166460052,
|
|
"rotY": 270.00293,
|
|
"rotZ": 0.0134196514,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lonnie's Wrench (0)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 594900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5949": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145115730/C46C642EC371055417296CC09A8D0297FC095CDC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "45301f",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3000031,
|
|
"posY": 4.35906649,
|
|
"posZ": -53.4368477,
|
|
"rotX": 0.0208374113,
|
|
"rotY": 270.02243,
|
|
"rotZ": 0.0167982318,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Daniela Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
594600,
|
|
594700,
|
|
594800
|
|
],
|
|
"CustomDeck": {
|
|
"5946": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145109585/18D9888FC634F4C1691F0063948783A166FDBB9F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"5947": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145110413/1FBB1A8C7363453B5D9E07D2B98C1CD3A6EB3400/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"5948": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145111723/5D0900CCCEBA5C43C1F20F93E9C435F6097E5E75/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "23e12e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -27.8159828,
|
|
"posY": 1.31600165,
|
|
"posZ": -45.5070572,
|
|
"rotX": 0.02080193,
|
|
"rotY": 270.0224,
|
|
"rotZ": 0.01677939,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pishtaco",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 594600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5946": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145109585/18D9888FC634F4C1691F0063948783A166FDBB9F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "96ce5f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -27.578783,
|
|
"posY": 1.406095,
|
|
"posZ": -45.35507,
|
|
"rotX": 357.972137,
|
|
"rotY": 270.028931,
|
|
"rotZ": 0.0166879576,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Gabriel",
|
|
"Description": "Señorita Magnet",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 594700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5947": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145110413/1FBB1A8C7363453B5D9E07D2B98C1CD3A6EB3400/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8f959e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -27.9870434,
|
|
"posY": 1.39165127,
|
|
"posZ": -45.7718735,
|
|
"rotX": 0.01664151,
|
|
"rotY": 270.0219,
|
|
"rotZ": 0.0134191243,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tool Belt (0)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 594800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5948": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145111723/5D0900CCCEBA5C43C1F20F93E9C435F6097E5E75/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "bde4a6",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6233158,
|
|
"posY": 1.36452138,
|
|
"posZ": -52.1352158,
|
|
"rotX": 0.02081703,
|
|
"rotY": 269.9998,
|
|
"rotZ": 0.0167681389,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "c3e12f",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.2996,
|
|
"posY": 1.291441,
|
|
"posZ": -84.818,
|
|
"rotX": 359.983215,
|
|
"rotY": -0.0008192465,
|
|
"rotZ": 0.0208471045,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "Darrell",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.6229885,
|
|
"g": 0.208531916,
|
|
"b": 0.208531916
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "dc7a22",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.2995968,
|
|
"posY": 4.4920063,
|
|
"posZ": -84.81799,
|
|
"rotX": 0.0208405051,
|
|
"rotY": 270.000763,
|
|
"rotZ": 0.01678428,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Darrell Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
368429,
|
|
368428,
|
|
368802,
|
|
368806,
|
|
368504,
|
|
450621,
|
|
447832,
|
|
447733,
|
|
450614,
|
|
368826,
|
|
368402,
|
|
266317,
|
|
368506,
|
|
368400,
|
|
266315,
|
|
447733,
|
|
430809,
|
|
368821,
|
|
430501,
|
|
368816,
|
|
274608,
|
|
368807,
|
|
277813,
|
|
368810,
|
|
368407,
|
|
368403,
|
|
368822,
|
|
368405,
|
|
368820,
|
|
550805
|
|
],
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"4478": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"4477": {
|
|
"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
|
|
},
|
|
"2663": {
|
|
"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
|
|
},
|
|
"4308": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"4305": {
|
|
"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
|
|
},
|
|
"2746": {
|
|
"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
|
|
},
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"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
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "d6771f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -44.012413,
|
|
"posY": 1.33832753,
|
|
"posZ": -89.21861,
|
|
"rotX": 0.0208073761,
|
|
"rotY": 269.999969,
|
|
"rotZ": 180.016769,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fieldwork",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "07a8f0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -43.979248,
|
|
"posY": 1.297369,
|
|
"posZ": -89.10761,
|
|
"rotX": 0.0208080523,
|
|
"rotY": 269.999939,
|
|
"rotZ": 180.016769,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Art Student",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368428,
|
|
"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": "334f03",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Resourceful",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "cc6e4d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Take Heart",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368806,
|
|
"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": "679b13",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.495391,
|
|
"posZ": -68.62183,
|
|
"rotX": -0.001782977,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.988663,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Manual Dexterity",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "19b705",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scroll of Secrets (Taboo)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 450621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1ac667",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Practice Makes Perfect",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447832,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4478": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f21109",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "A Glimmer of Hope",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447733,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4477": {
|
|
"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": "8ae314",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16148,
|
|
"posY": 1.31262577,
|
|
"posZ": -68.62193,
|
|
"rotX": 0.0105142528,
|
|
"rotY": 269.999756,
|
|
"rotZ": 180.066864,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dr. Milan Christopher (Taboo)",
|
|
"Description": "Professor of Entomology",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 450614,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ee20c9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Newspaper",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368826,
|
|
"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": "b265c4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614456,
|
|
"posY": 1.33660448,
|
|
"posZ": -68.6219,
|
|
"rotX": 359.586151,
|
|
"rotY": 270.0001,
|
|
"rotZ": 180.0127,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deduction",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b176fc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deep Knowledge",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266317,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "c6ac19",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.50733078,
|
|
"posZ": -68.62183,
|
|
"rotX": -0.00425279746,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.972839,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Perception",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "ffa4f9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eureka!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "4f3142",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cryptographic Cipher",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "f21109",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "A Glimmer of Hope",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447733,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4477": {
|
|
"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": "13413d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Connect the Dots",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430809,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4308": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "215cec",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cherished Keepsake",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368821,
|
|
"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": "aa3984",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Winging It",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430501,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4305": {
|
|
"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": "88d3c0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.48423445,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.00509365555,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.032333,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Look what I found!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "6fa7fa",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Track Shoes",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 274608,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2746": {
|
|
"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": "050ba1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Live and Learn",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "5ada0a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hawk-Eye Folding Camera",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277813,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ce0dd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.50136876,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.00173745607,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.988785,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lucky!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "f69e10",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Seeking Answers",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368407,
|
|
"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": "4167c0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "True Understanding",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368403,
|
|
"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": "1b76c9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.451553,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.008411194,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.053482,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scavenging",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368822,
|
|
"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": "d4fd4a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Shortcut",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368405,
|
|
"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": "593deb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.382791,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.008411173,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.053482,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Leather Coat",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368820,
|
|
"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": "5888da",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Old Keyring",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 550805,
|
|
"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": "4d782a",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.2995872,
|
|
"posY": 4.34988356,
|
|
"posZ": -84.8179855,
|
|
"rotX": 0.0208412819,
|
|
"rotY": 269.997742,
|
|
"rotZ": 0.016787786,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Darrell Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
594700,
|
|
631000,
|
|
630900
|
|
],
|
|
"CustomDeck": {
|
|
"5947": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147806961/54E97C271664C1F6471B212A677BE702BBC6ADB0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6310": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521684847872859/CB4990E92B4FE05C45BD05D06B68C80AE10001B0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6309": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521684847871371/E7FF839A9B42A2DC50FD54FF0C8488775F3B7A6C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "69218d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -27.8136387,
|
|
"posY": 1.30787838,
|
|
"posZ": -81.18152,
|
|
"rotX": 0.08571874,
|
|
"rotY": 270.002747,
|
|
"rotZ": 0.04727461,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Arkham Advertiser",
|
|
"Description": "Newspaper Office",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 594700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5947": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038147806961/54E97C271664C1F6471B212A677BE702BBC6ADB0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e13c4d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -27.5351677,
|
|
"posY": 1.34971976,
|
|
"posZ": -81.38461,
|
|
"rotX": 359.756531,
|
|
"rotY": 269.961578,
|
|
"rotZ": 359.87973,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tunnel Vision",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6310": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521684847872859/CB4990E92B4FE05C45BD05D06B68C80AE10001B0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b475d2",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -27.07612,
|
|
"posY": 1.41095269,
|
|
"posZ": -81.26984,
|
|
"rotX": 1.186833,
|
|
"rotY": 270.016418,
|
|
"rotZ": 0.113022327,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Doyle Jeffries",
|
|
"Description": "Editor-in-Chief",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6309": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521684847871371/E7FF839A9B42A2DC50FD54FF0C8488775F3B7A6C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "ced1e0",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.3002,
|
|
"posY": 1.293745,
|
|
"posZ": -76.9456,
|
|
"rotX": 359.983215,
|
|
"rotY": 0.000285930524,
|
|
"rotZ": 0.0208324064,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "Agatha",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.5986127,
|
|
"g": 0.131551534,
|
|
"b": 0.70810163
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "d25df2",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3001881,
|
|
"posY": 4.36434126,
|
|
"posZ": -76.94564,
|
|
"rotX": 0.0208281167,
|
|
"rotY": 269.998932,
|
|
"rotZ": 0.0167825837,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agatha Starter Bonded Cards",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
379021,
|
|
379021,
|
|
379021
|
|
],
|
|
"CustomDeck": {
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "49b523",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614838,
|
|
"posY": 1.31350589,
|
|
"posZ": -72.3782,
|
|
"rotX": 0.002230371,
|
|
"rotY": 269.999023,
|
|
"rotZ": 359.990967,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood-Rite",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379021,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "26729c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16152,
|
|
"posY": 1.34124279,
|
|
"posZ": -72.37791,
|
|
"rotX": 0.0245485,
|
|
"rotY": 270.000977,
|
|
"rotZ": 359.155975,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood-Rite",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379021,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "eafd12",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614723,
|
|
"posY": 1.87669742,
|
|
"posZ": -72.37811,
|
|
"rotX": 0.0016939526,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.992828,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood-Rite",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379021,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "22456c",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3001881,
|
|
"posY": 4.49433947,
|
|
"posZ": -76.94564,
|
|
"rotX": 0.020829577,
|
|
"rotY": 269.9972,
|
|
"rotZ": 0.0167826321,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agatha Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
230305,
|
|
230314,
|
|
430907,
|
|
380126,
|
|
277813,
|
|
430908,
|
|
230331,
|
|
266326,
|
|
448029,
|
|
368400,
|
|
277512,
|
|
538807,
|
|
444024,
|
|
538710,
|
|
277812,
|
|
538714,
|
|
266323,
|
|
450621,
|
|
444024,
|
|
368420,
|
|
379020,
|
|
538811,
|
|
230329,
|
|
368506,
|
|
368500,
|
|
230308,
|
|
230328,
|
|
368408,
|
|
450614,
|
|
230330
|
|
],
|
|
"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
|
|
},
|
|
"4309": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2663": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"2775": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"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
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "45d2d2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Uncage the Soul",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 230305,
|
|
"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": "9c922f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Storm of Spirits",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "ff3f17",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eldritch Inspiration",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430907,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4309": {
|
|
"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": "75eca5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Read the Signs",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "5ada0a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hawk-Eye Folding Camera",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277813,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8aa0c3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deny Existence",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430908,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4309": {
|
|
"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": "423d46",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "St. Hubert's Key",
|
|
"Description": "Cleansing Fire",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "d8b64b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Promise of Power",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266326,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "8e8a14",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spectral Razor",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "ffa4f9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eureka!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "6eceef",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sixth Sense",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277512,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2775": {
|
|
"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": "a614de",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Feed the Mind",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538807,
|
|
"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": "a33acd",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Open Gate",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "d9292f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Robes of Endless Night",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "8dce44",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Crack the Case",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277812,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0988b2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Voice of Ra",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "9c32e2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sword Cane",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266323,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "19b705",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scroll of Secrets (Taboo)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 450621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a33acd",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Open Gate",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "cbfc12",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Archaic Glyphs",
|
|
"Description": "Untranslated",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368420,
|
|
"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": "5d6728",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Occult Lexicon",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379020,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3790": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3c5099",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Whitton Greene",
|
|
"Description": "Hunter of Rare Books",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538811,
|
|
"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": "29b842",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.51321411,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.00478854124,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.030563,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rite of Seeking",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 230329,
|
|
"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": "c6ac19",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.43838108,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.007883958,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.050186,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Perception",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "8f7289",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614761,
|
|
"posY": 1.43335342,
|
|
"posZ": -68.62189,
|
|
"rotX": 0.007892775,
|
|
"rotY": 269.9999,
|
|
"rotZ": 180.050156,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Guts",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "6656ad",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.37156379,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.007883916,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.050186,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ward of Protection",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "914053",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.76968074,
|
|
"posZ": -68.62185,
|
|
"rotX": 3.06009912,
|
|
"rotY": 270.2682,
|
|
"rotZ": 190.015427,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Shrivelling",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "8cf335",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16143,
|
|
"posY": 1.33686876,
|
|
"posZ": -68.62188,
|
|
"rotX": 359.576263,
|
|
"rotY": 270.0001,
|
|
"rotZ": 180.012665,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mind over Matter",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368408,
|
|
"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": "8ae314",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -52.3711281,
|
|
"posY": 1.63057673,
|
|
"posZ": -78.40548,
|
|
"rotX": 0.0208116956,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01677445,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dr. Milan Christopher (Taboo)",
|
|
"Description": "Professor of Entomology",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 450614,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4506": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "53867b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -51.2858276,
|
|
"posY": 1.707727,
|
|
"posZ": -78.22212,
|
|
"rotX": 359.964752,
|
|
"rotY": 269.997925,
|
|
"rotZ": 354.228851,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Alyssa Graham",
|
|
"Description": "Speaker to the Dead",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 230330,
|
|
"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": "dfa5cf",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.30002,
|
|
"posY": 4.3531847,
|
|
"posZ": -76.94564,
|
|
"rotX": 0.0603221431,
|
|
"rotY": 270.000122,
|
|
"rotZ": 0.01670622,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agatha Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
621500,
|
|
593000,
|
|
631100
|
|
],
|
|
"CustomDeck": {
|
|
"6215": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145068664/EB95CA0C86110B4241C4682C60DF5B287C24F0C4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"5930": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145069817/EC64C936688639C4D484416495BC9ED3B67804DF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6311": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910590449/C132AE33B1F33AA033D9B85FA631C2C062F100EC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "12d504",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -30.4780064,
|
|
"posY": 1.36965859,
|
|
"posZ": -76.50248,
|
|
"rotX": 2.40473866,
|
|
"rotY": 270.00238,
|
|
"rotZ": 0.0164608434,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Telekinesis",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5925": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145068664/EB95CA0C86110B4241C4682C60DF5B287C24F0C4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "561289",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -30.3462868,
|
|
"posY": 1.47008288,
|
|
"posZ": -76.386,
|
|
"rotX": 0.3576078,
|
|
"rotY": 269.9952,
|
|
"rotZ": 359.897247,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Superstitious",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 593000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5926": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145069817/EC64C936688639C4D484416495BC9ED3B67804DF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b731ed",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -32.7521133,
|
|
"posY": 1.38127744,
|
|
"posZ": -75.36388,
|
|
"rotX": 0.0208101664,
|
|
"rotY": 269.9956,
|
|
"rotZ": 0.01676934,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Precognition",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6216": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910590449/C132AE33B1F33AA033D9B85FA631C2C062F100EC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "d6fdbf",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6232166,
|
|
"posY": 1.36150384,
|
|
"posZ": -62.4441147,
|
|
"rotX": 0.0208268613,
|
|
"rotY": 269.9652,
|
|
"rotZ": 0.0167554785,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "d9fb86",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.6233177,
|
|
"posY": 1.356904,
|
|
"posZ": -78.15892,
|
|
"rotX": 0.02081415,
|
|
"rotY": 270.0087,
|
|
"rotZ": 0.0167710837,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "dced09",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.616909,
|
|
"posY": 1.30638278,
|
|
"posZ": -84.8185,
|
|
"rotX": 0.02080901,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0167712532,
|
|
"scaleX": 0.7828339,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.7828339
|
|
},
|
|
"Nickname": "Darrell Simmons",
|
|
"Description": "The Photographer",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6308": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521684847868047/7486ADCAEE5C6C7C03A4423E3C38FC7D5BC39A25/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1750192534027636742/8DA1979925FA273177A1BFCDEF7A2621197592ED/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "de216f",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.638319,
|
|
"posY": 1.36221766,
|
|
"posZ": -59.98692,
|
|
"rotX": 0.0208125412,
|
|
"rotY": 270.0107,
|
|
"rotZ": 0.0167718586,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "e04b48",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -16.62352,
|
|
"posY": 1.3576268,
|
|
"posZ": -75.68862,
|
|
"rotX": 0.0208203048,
|
|
"rotY": 269.987427,
|
|
"rotZ": 0.016763458,
|
|
"scaleX": 0.45,
|
|
"scaleY": 0.6,
|
|
"scaleZ": 0.45
|
|
},
|
|
"Nickname": "Survivor turn token",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": 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": "e3a45e",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -26.3001,
|
|
"posY": 1.29834163,
|
|
"posZ": -61.241,
|
|
"rotX": 359.983215,
|
|
"rotY": 0.0006134884,
|
|
"rotZ": 0.0208378378,
|
|
"scaleX": 2.19999957,
|
|
"scaleY": 2.19999957,
|
|
"scaleZ": 2.19999957
|
|
},
|
|
"Nickname": "Kate",
|
|
"Description": "font size = 90\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.9138992,
|
|
"g": 0.7357981,
|
|
"b": 0.289033
|
|
},
|
|
"LayoutGroupSortIndex": 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://www.dropbox.com/s/ikgs1s70gnh9fjs/MtGdecksdeckBox001.obj?dl=1",
|
|
"DiffuseURL": "http://i.imgur.com/1ohL4YF.pnghttp://i.imgur.com/1ohL4YF.png",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onload()\n b_display = { index = 0,\n click_function = 'updateDisplay',\r\n label = self.getName(),\r\n function_owner = self,\r\n position = {0, 1.4, 0},\r\n rotation = {0, 270, 0},\r\n width = 500,\r\n height = 200,\r\n font_size = 200}\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.createButton(b_display)\r\nend\n\nfunction updateDisplay()\r\n b_display.label = self.getName()\n\n local description = string.match(self.getDescription(), '%d+')\r\n if description != '' and type(tonumber(description)) == 'number' then\r\n b_display.font_size = tonumber(description)\r\n end\n\r\n self.editButton(b_display)\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "6ad46b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -26.300148,
|
|
"posY": 4.34717464,
|
|
"posZ": -61.24097,
|
|
"rotX": 0.0208227262,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0167861786,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Essence of the Dream",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379929,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d965e1",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.300148,
|
|
"posY": 4.49888945,
|
|
"posZ": -61.24097,
|
|
"rotX": 0.0208255351,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0167887416,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Kate Starter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
550805,
|
|
266318,
|
|
380126,
|
|
266315,
|
|
368504,
|
|
380025,
|
|
368418,
|
|
368415,
|
|
368432,
|
|
368622,
|
|
538603,
|
|
538812,
|
|
368400,
|
|
266317,
|
|
538808,
|
|
368422,
|
|
277812,
|
|
368434,
|
|
379928,
|
|
538811,
|
|
368429,
|
|
368506,
|
|
368408,
|
|
553106,
|
|
441025,
|
|
368420,
|
|
368402,
|
|
430501,
|
|
538613,
|
|
447832
|
|
],
|
|
"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
|
|
},
|
|
"2663": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"3800": {
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"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
|
|
},
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"4410": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"4305": {
|
|
"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
|
|
},
|
|
"4478": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "5888da",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Old Keyring",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 550805,
|
|
"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": "96fd5d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Plan of Action",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266318,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "75eca5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Read the Signs",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "4f3142",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cryptographic Cipher",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "679b13",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.49658847,
|
|
"posZ": -68.62185,
|
|
"rotX": 359.973022,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.006531,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Manual Dexterity",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "0cc3e7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Followed",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 380025,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3800": {
|
|
"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": "acd0da",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614761,
|
|
"posY": 1.49522066,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0134339668,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.99852,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"I've got a plan!\"",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368418,
|
|
"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": "44cf4a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "No Stone Unturned",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368415,
|
|
"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": "c1a687",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tooth of Eztli",
|
|
"Description": "Mortal Reminder",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "bc3451",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.44673014,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0214662384,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.993347,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Burglary",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368622,
|
|
"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": "cc11e4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lockpicks",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538603,
|
|
"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": "0d29be",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Burning the Midnight Oil",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "ffa4f9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eureka!",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "b176fc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deep Knowledge",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266317,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2663": {
|
|
"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": "0a4d22",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Forbidden Tome",
|
|
"Description": "Untranslated",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538808,
|
|
"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": "565b6b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.50566244,
|
|
"posZ": -68.62185,
|
|
"rotX": -0.004472221,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0036,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Strange Solution",
|
|
"Description": "Unidentified",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368422,
|
|
"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": "8dce44",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Crack the Case",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277812,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9934d2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16148,
|
|
"posY": 1.339507,
|
|
"posZ": -68.62183,
|
|
"rotX": 0.0443883426,
|
|
"rotY": 270.006317,
|
|
"rotZ": 179.986191,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dr. Milan Christopher",
|
|
"Description": "Professor of Entomology",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368434,
|
|
"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": "b81dcf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dream Diary",
|
|
"Description": "Untranslated",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 379928,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3799": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3c5099",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Whitton Greene",
|
|
"Description": "Hunter of Rare Books",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538811,
|
|
"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": "d6771f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fieldwork",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "c6ac19",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.1614647,
|
|
"posY": 1.476393,
|
|
"posZ": -68.62185,
|
|
"rotX": 359.977783,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.001343,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Perception",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "8cf335",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16148,
|
|
"posY": 1.39540732,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0454170033,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.954727,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mind over Matter",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368408,
|
|
"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": "31cfbf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Breaking and Entering",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 553106,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5531": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1684870715280867313/BFD2AF968EAC917D3B838DCB8B1656941CD8B5CC/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7686cb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Astounding Revelation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 441025,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4410": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cbfc12",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Archaic Glyphs",
|
|
"Description": "Untranslated",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 368420,
|
|
"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": "b265c4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 1.40429592,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.03550963,
|
|
"rotY": 270.0,
|
|
"rotZ": 179.988953,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deduction",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 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": "aa3984",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Winging It",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430501,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4305": {
|
|
"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": "cc9563",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pilfer",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 538613,
|
|
"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": "1ac667",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -63.16147,
|
|
"posY": 8.66884,
|
|
"posZ": -68.62185,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Practice Makes Perfect",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447832,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4478": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "86aef6",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -26.3011265,
|
|
"posY": 4.39276743,
|
|
"posZ": -61.24097,
|
|
"rotX": 1.71738124,
|
|
"rotY": 270.009827,
|
|
"rotZ": 0.0168559924,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Kate Signatures",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
594200,
|
|
594100,
|
|
616300,
|
|
593900
|
|
],
|
|
"CustomDeck": {
|
|
"5942": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145101929/B1AFB49685DB33E594D0769AC4C275EEBA49D2DE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"5941": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145101031/D43E842DF349E9296ADD051528C6908F6C90BCA8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"6163": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592798946/29B457C6FCE52BB939D9CC887E1EFFCE5D6CB7F2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"5939": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145098593/E589601A0D17A291642A7874CBD0E47AFBB02A6F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "1deff1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -41.5918961,
|
|
"posY": 1.30505371,
|
|
"posZ": -65.81632,
|
|
"rotX": 0.0208083857,
|
|
"rotY": 269.999634,
|
|
"rotZ": 0.01676946,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rift Walker",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 594200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5942": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145101929/B1AFB49685DB33E594D0769AC4C275EEBA49D2DE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "915bba",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -41.4167252,
|
|
"posY": 1.34697545,
|
|
"posZ": -65.95125,
|
|
"rotX": 0.02080861,
|
|
"rotY": 269.999542,
|
|
"rotZ": 0.016769601,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dimensional Rift",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 594100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5941": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145101031/D43E842DF349E9296ADD051528C6908F6C90BCA8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "57cd79",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -29.9303379,
|
|
"posY": 1.52606034,
|
|
"posZ": -62.2586174,
|
|
"rotX": 0.5536644,
|
|
"rotY": 269.999878,
|
|
"rotZ": 0.0169955548,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dimensional Study",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 616300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6163": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592798946/29B457C6FCE52BB939D9CC887E1EFFCE5D6CB7F2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f458be",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -29.91406,
|
|
"posY": 1.47879255,
|
|
"posZ": -61.4244347,
|
|
"rotX": 2.92923737,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.015611263,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Flux Stabilizer",
|
|
"Description": "Dr. Young's Legacy",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 593900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5939": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145098593/E589601A0D17A291642A7874CBD0E47AFBB02A6F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "f1896b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -19.3001,
|
|
"posY": 1.31449115,
|
|
"posZ": -61.2332,
|
|
"rotX": 0.0208086986,
|
|
"rotY": 269.9998,
|
|
"rotZ": 0.01677094,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Kate Winthrop",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 593500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5935": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145092439/64B886DA07CBF8F040448BD9EF8A66AD68E1F5A6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1773832038145092825/8A1D1E513AE4EE5111EF33E4CD1F43300872F38A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
],
|
|
"AttachedDecals": [
|
|
{
|
|
"Transform": {
|
|
"posX": -0.0021877822,
|
|
"posY": -0.08963572,
|
|
"posZ": -0.00288731651,
|
|
"rotX": 270.0,
|
|
"rotY": 359.869568,
|
|
"rotZ": 0.0,
|
|
"scaleX": 2.00000215,
|
|
"scaleY": 2.00000238,
|
|
"scaleZ": 2.00000262
|
|
},
|
|
"CustomDecal": {
|
|
"Name": "dunwich_back",
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
|
|
"Size": 7.4
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "ec74df",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 6.75699854,
|
|
"posY": 1.31145525,
|
|
"posZ": -57.4562,
|
|
"rotX": 0.0208084844,
|
|
"rotY": 270.0008,
|
|
"rotZ": 0.0167711768,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Player Cards",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"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/1799728983834482917/AF15B7742848434870B9CE865130DE62D6877AAD/",
|
|
"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\":{\"00b150\":{\"lock\":false,\"pos\":{\"x\":49.2784996032715,\"y\":1.29622519016266,\"z\":-84.2086029052734},\"rot\":{\"x\":0.0208076145499945,\"y\":270.003295898438,\"z\":0.0167722944170237}},\"00d373\":{\"lock\":false,\"pos\":{\"x\":58.3838996887207,\"y\":1.30202317237854,\"z\":64.7901992797852},\"rot\":{\"x\":0.0208122003823519,\"y\":269.987426757813,\"z\":0.0167665891349316}},\"01b154\":{\"lock\":false,\"pos\":{\"x\":58.3838996887207,\"y\":1.3040429353714,\"z\":71.6903991699219},\"rot\":{\"x\":0.020807484164834,\"y\":270.003387451172,\"z\":0.0167722553014755}},\"02f4c4\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.29705893993378,\"z\":69.4486999511719},\"rot\":{\"x\":0.0208081640303135,\"y\":270.001403808594,\"z\":0.0167715959250927}},\"07c8fc\":{\"lock\":false,\"pos\":{\"x\":49.5629005432129,\"y\":1.3015308380127,\"z\":74.0528030395508},\"rot\":{\"x\":0.0208168905228376,\"y\":269.971588134766,\"z\":0.0167608130723238}},\"0d0972\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30226576328278,\"z\":-68.1202011108398},\"rot\":{\"x\":0.0208085626363754,\"y\":270,\"z\":0.0167712140828371}},\"109a44\":{\"lock\":false,\"pos\":{\"x\":52.9440994262695,\"y\":1.29755306243896,\"z\":-84.2201995849609},\"rot\":{\"x\":0.0208076033741236,\"y\":270.003387451172,\"z\":0.0167723018676043}},\"10e901\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.30379128456116,\"z\":92.4486999511719},\"rot\":{\"x\":0.0208129640668631,\"y\":269.984588623047,\"z\":0.0167656391859055}},\"13fdee\":{\"lock\":false,\"pos\":{\"x\":36.6244,\"y\":1.3215,\"z\":-56.6084},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"142c11\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30293893814087,\"z\":-65.820198059082},\"rot\":{\"x\":0.0208078417927027,\"y\":270.002288818359,\"z\":0.0167719908058643}},\"150541\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.3082447052002,\"z\":92.4412002563477},\"rot\":{\"x\":0.0208127200603485,\"y\":269.985198974609,\"z\":0.0167657844722271}},\"1a9c68\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30428540706635,\"z\":-61.2202987670898},\"rot\":{\"x\":0.0208061896264553,\"y\":270.008544921875,\"z\":0.0167742669582367}},\"1b28e1\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.3017281293869,\"z\":-49.7084465026855},\"rot\":{\"x\":0.0208085458725691,\"y\":270.000213623047,\"z\":0.0167720038443804}},\"1dae6f\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.30109834671021,\"z\":83.2487030029297},\"rot\":{\"x\":0.0208074115216732,\"y\":270.003692626953,\"z\":0.0167724248021841}},\"1fbf7c\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29297602176666,\"z\":-79.608268737793},\"rot\":{\"x\":0.0208069700747728,\"y\":270.003387451172,\"z\":0.0167721901088953}},\"267617\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.29949259757996,\"z\":62.5411987304688},\"rot\":{\"x\":0.0208087544888258,\"y\":270,\"z\":0.0167710278183222}},\"2747a3\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.30244481563568,\"z\":87.8487014770508},\"rot\":{\"x\":0.0208123028278351,\"y\":269.986694335938,\"z\":0.0167663656175137}},\"2777b2\":{\"lock\":false,\"pos\":{\"x\":58.0996017456055,\"y\":1.29941058158875,\"z\":-84.2708969116211},\"rot\":{\"x\":0.0208085104823112,\"y\":270,\"z\":0.0167710799723864}},\"2842c4\":{\"lock\":false,\"pos\":{\"x\":49.2784996032715,\"y\":1.29891800880432,\"z\":-75.0087966918945},\"rot\":{\"x\":0.0208074022084475,\"y\":270.003387451172,\"z\":0.0167724061757326}},\"29825a\":{\"lock\":false,\"pos\":{\"x\":37.4159088134766,\"y\":1.31350362300873,\"z\":55.6608047485352},\"rot\":{\"x\":0.0208071898669004,\"y\":270.007385253906,\"z\":0.0167748928070068}},\"29cafa\":{\"lock\":false,\"pos\":{\"x\":58.3838996887207,\"y\":1.30471611022949,\"z\":73.9904022216797},\"rot\":{\"x\":0.0208083856850863,\"y\":270.000610351563,\"z\":0.0167715419083834}},\"330c58\":{\"lock\":false,\"pos\":{\"x\":40.2900695800781,\"y\":1.29699695110321,\"z\":-70.4198455810547},\"rot\":{\"x\":0.020807296037674,\"y\":270.003387451172,\"z\":0.0167721956968308}},\"369ccc\":{\"lock\":false,\"pos\":{\"x\":52.9443016052246,\"y\":1.29687988758087,\"z\":-86.5202026367188},\"rot\":{\"x\":0.0208064168691635,\"y\":270.007598876953,\"z\":0.0167737975716591}},\"3a1b65\":{\"lock\":false,\"pos\":{\"x\":53.2127990722656,\"y\":1.29612362384796,\"z\":51.051700592041},\"rot\":{\"x\":0.0208161845803261,\"y\":269.97412109375,\"z\":0.0167616251856089}},\"4234ff\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.30555176734924,\"z\":83.2412033081055},\"rot\":{\"x\":0.0208080690354109,\"y\":270.002288818359,\"z\":0.0167720187455416}},\"43ab37\":{\"lock\":false,\"pos\":{\"x\":40.2900733947754,\"y\":1.29767024517059,\"z\":-68.1198425292969},\"rot\":{\"x\":0.0208070073276758,\"y\":270.003387451172,\"z\":0.0167720783501863}},\"48795b\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.30420517921448,\"z\":78.6411972045898},\"rot\":{\"x\":0.0208085626363754,\"y\":269.999938964844,\"z\":0.016770962625742}},\"4a8864\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.30240142345428,\"z\":-47.4084320068359},\"rot\":{\"x\":0.0208083689212799,\"y\":270.000762939453,\"z\":0.0167713668197393}},\"4ad7d5\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30697846412659,\"z\":-52.0203018188477},\"rot\":{\"x\":0.0208075623959303,\"y\":270.003295898438,\"z\":0.0167722925543785}},\"4b8a01\":{\"lock\":false,\"pos\":{\"x\":58.3838996887207,\"y\":1.30673587322235,\"z\":80.8904037475586},\"rot\":{\"x\":0.0208074990659952,\"y\":270.003295898438,\"z\":0.0167724248021841}},\"4ee29d\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.29836201667786,\"z\":-61.2084426879883},\"rot\":{\"x\":0.0208073947578669,\"y\":270.003295898438,\"z\":0.0167722459882498}},\"5094ce\":{\"lock\":false,\"pos\":{\"x\":58.3838996887207,\"y\":1.30067670345306,\"z\":60.190299987793},\"rot\":{\"x\":0.0208030380308628,\"y\":270.018798828125,\"z\":0.0167778562754393}},\"53b5a9\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.29881930351257,\"z\":60.2411994934082},\"rot\":{\"x\":0.0208075772970915,\"y\":270.003295898438,\"z\":0.0167725514620543}},\"54fa2c\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.30151224136353,\"z\":69.4412002563477},\"rot\":{\"x\":0.0207991618663073,\"y\":270.032012939453,\"z\":0.0167829319834709}},\"55d2f8\":{\"lock\":false,\"pos\":{\"x\":40.2900695800781,\"y\":1.29968988895416,\"z\":-61.2199897766113},\"rot\":{\"x\":0.0208075065165758,\"y\":270.003295898438,\"z\":0.0167724564671516}},\"5d5807\":{\"lock\":false,\"pos\":{\"x\":37.4160003662109,\"y\":1.29442870616913,\"z\":64.8607025146484},\"rot\":{\"x\":0.0208077263087034,\"y\":270.003295898438,\"z\":0.016772473230958}},\"5d9979\":{\"lock\":false,\"pos\":{\"x\":40.290111541748,\"y\":1.2922842502594,\"z\":-86.519889831543},\"rot\":{\"x\":0.0208124127238989,\"y\":269.985229492188,\"z\":0.0167654119431973}},\"5e5144\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.29503917694092,\"z\":62.5488014221191},\"rot\":{\"x\":0.0208077393472195,\"y\":270.003295898438,\"z\":0.0167724341154099}},\"614074\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.29889953136444,\"z\":-79.6202011108398},\"rot\":{\"x\":0.0208077151328325,\"y\":270.003387451172,\"z\":0.016772523522377}},\"63e44e\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29701554775238,\"z\":-65.8082809448242},\"rot\":{\"x\":0.0208077300339937,\"y\":270.001495361328,\"z\":0.0167710613459349}},\"660e71\":{\"lock\":false,\"pos\":{\"x\":40.9603004455566,\"y\":1.29436600208282,\"z\":60.2487983703613},\"rot\":{\"x\":0.0208040177822113,\"y\":270.015411376953,\"z\":0.0167766865342855}},\"66a2cb\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.29975187778473,\"z\":78.6486968994141},\"rot\":{\"x\":0.0208080690354109,\"y\":270.002288818359,\"z\":0.0167720131576061}},\"683863\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.30689823627472,\"z\":87.8412017822266},\"rot\":{\"x\":0.0208083614706993,\"y\":270.000732421875,\"z\":0.0167714972048998}},\"6dc636\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30765163898468,\"z\":-49.7202987670898},\"rot\":{\"x\":0.0208077598363161,\"y\":270.002288818359,\"z\":0.0167719796299934}},\"701495\":{\"lock\":false,\"pos\":{\"x\":40.2900581359863,\"y\":1.30372929573059,\"z\":-47.4199981689453},\"rot\":{\"x\":0.020816994830966,\"y\":269.970397949219,\"z\":0.0167604796588421}},\"74d8f2\":{\"lock\":false,\"pos\":{\"x\":40.290153503418,\"y\":1.30238628387451,\"z\":-52.0084648132324},\"rot\":{\"x\":0.0208003651350737,\"y\":270.028015136719,\"z\":0.0167812239378691}},\"762ef7\":{\"lock\":false,\"pos\":{\"x\":36.6086692810059,\"y\":1.29028046131134,\"z\":-88.7977294921875},\"rot\":{\"x\":0.0208065081387758,\"y\":270.005706787109,\"z\":0.0167730543762445}},\"789fd5\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.29840540885925,\"z\":74.048698425293},\"rot\":{\"x\":0.0208062399178743,\"y\":270.008392333984,\"z\":0.0167742352932692}},\"79832a\":{\"lock\":false,\"pos\":{\"x\":36.624340057373,\"y\":1.29903519153595,\"z\":-58.9084396362305},\"rot\":{\"x\":0.0208083242177963,\"y\":270.00048828125,\"z\":0.0167711470276117}},\"7ceaf0\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30832493305206,\"z\":-47.4202995300293},\"rot\":{\"x\":0.0208077412098646,\"y\":270.003295898438,\"z\":0.0167723875492811}},\"7e06de\":{\"lock\":false,\"pos\":{\"x\":40.2901000976563,\"y\":1.29430401325226,\"z\":-79.6199035644531},\"rot\":{\"x\":0.0208076126873493,\"y\":270.002410888672,\"z\":0.0167721882462502}},\"800a44\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.29571235179901,\"z\":64.8487014770508},\"rot\":{\"x\":0.0208112150430679,\"y\":269.9912109375,\"z\":0.0167678985744715}},\"82f8b3\":{\"lock\":false,\"pos\":{\"x\":36.6267204284668,\"y\":1.29970145225525,\"z\":-56.6351318359375},\"rot\":{\"x\":0.0208079386502504,\"y\":270.003601074219,\"z\":0.0167720895260572}},\"89945d\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.29679954051971,\"z\":53.3412017822266},\"rot\":{\"x\":0.0208076424896717,\"y\":270.003387451172,\"z\":0.0167724825441837}},\"8bfe17\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.296342253685,\"z\":-68.108283996582},\"rot\":{\"x\":0.020807046443224,\"y\":270.003387451172,\"z\":0.0167718883603811}},\"8c5545\":{\"lock\":false,\"pos\":{\"x\":49.5629005432129,\"y\":1.30422377586365,\"z\":83.252799987793},\"rot\":{\"x\":0.0208076555281878,\"y\":270.003295898438,\"z\":0.016772324219346}},\"8cd304\":{\"lock\":false,\"pos\":{\"x\":40.9634017944336,\"y\":1.29234755039215,\"z\":53.3492012023926},\"rot\":{\"x\":0.0208045206964016,\"y\":270.014190673828,\"z\":0.0167764592915773}},\"902329\":{\"lock\":false,\"pos\":{\"x\":32.9853057861328,\"y\":1.29838681221008,\"z\":-56.6083221435547},\"rot\":{\"x\":0.0208145678043365,\"y\":269.980712890625,\"z\":0.0167647618800402}},\"972be8\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.30218553543091,\"z\":71.7412033081055},\"rot\":{\"x\":0.0208017006516457,\"y\":270.023406982422,\"z\":0.0167796313762665}},\"9aa61e\":{\"lock\":false,\"pos\":{\"x\":40.2900657653809,\"y\":1.29565036296844,\"z\":-75.0199737548828},\"rot\":{\"x\":0.0208071880042553,\"y\":270.003387451172,\"z\":0.0167721826583147}},\"9cf29d\":{\"lock\":false,\"pos\":{\"x\":49.562801361084,\"y\":1.2961448431015,\"z\":55.6528015136719},\"rot\":{\"x\":0.0208157002925873,\"y\":269.975311279297,\"z\":0.0167622491717339}},\"a0d589\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29095637798309,\"z\":-86.5082778930664},\"rot\":{\"x\":0.0208065398037434,\"y\":270.005706787109,\"z\":0.0167731232941151}},\"a8a701\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.302858710289,\"z\":74.0411987304688},\"rot\":{\"x\":0.0208188313990831,\"y\":269.964813232422,\"z\":0.0167585052549839}},\"ab5ff8\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29162955284119,\"z\":-84.2082748413086},\"rot\":{\"x\":0.0208077020943165,\"y\":270.001586914063,\"z\":0.0167716350406408}},\"af0339\":{\"lock\":false,\"pos\":{\"x\":40.2899627685547,\"y\":1.29295742511749,\"z\":-84.2198944091797},\"rot\":{\"x\":0.0208080634474754,\"y\":270.003356933594,\"z\":0.0167729798704386}},\"b219d3\":{\"lock\":false,\"pos\":{\"x\":52.9442253112793,\"y\":1.30159246921539,\"z\":-70.4201965332031},\"rot\":{\"x\":0.0208069160580635,\"y\":270.003295898438,\"z\":0.016772173345089}},\"b2223d\":{\"lock\":false,\"pos\":{\"x\":58.3838996887207,\"y\":1.31010210514069,\"z\":92.3904037475586},\"rot\":{\"x\":0.020807322114706,\"y\":270.003997802734,\"z\":0.0167725794017315}},\"b3d14a\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.30042505264282,\"z\":80.9486999511719},\"rot\":{\"x\":0.0208080485463142,\"y\":270.002288818359,\"z\":0.0167719908058643}},\"b44416\":{\"lock\":false,\"pos\":{\"x\":58.0997009277344,\"y\":1.31018233299255,\"z\":-47.4710006713867},\"rot\":{\"x\":0.0208075661212206,\"y\":270.003295898438,\"z\":0.0167724080383778}},\"bae94d\":{\"lock\":false,\"pos\":{\"x\":58.3838996887207,\"y\":1.30134987831116,\"z\":62.4902992248535},\"rot\":{\"x\":0.0208076946437359,\"y\":270.002593994141,\"z\":0.016772098839283}},\"bb5171\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29432249069214,\"z\":-75.0083999633789},\"rot\":{\"x\":0.0208081621676683,\"y\":269.999603271484,\"z\":0.0167708694934845}},\"bc2dcc\":{\"lock\":false,\"pos\":{\"x\":52.9283981323242,\"y\":1.29620385169983,\"z\":-88.809700012207},\"rot\":{\"x\":0.0208077281713486,\"y\":270.002288818359,\"z\":0.0167719591408968}},\"c0a46b\":{\"lock\":false,\"pos\":{\"x\":53.2285003662109,\"y\":1.2974728345871,\"z\":55.6412010192871},\"rot\":{\"x\":0.020808020606637,\"y\":270.002288818359,\"z\":0.0167720224708319}},\"c1905b\":{\"lock\":false,\"pos\":{\"x\":40.2900695800781,\"y\":1.29497718811035,\"z\":-77.3198776245117},\"rot\":{\"x\":0.020808469504118,\"y\":269.998199462891,\"z\":0.0167701747268438}},\"c2fcb8\":{\"lock\":false,\"pos\":{\"x\":58.3838996887207,\"y\":1.30740916728973,\"z\":83.1903991699219},\"rot\":{\"x\":0.020808432251215,\"y\":270.000091552734,\"z\":0.0167710836976767}},\"c33f5f\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30563187599182,\"z\":-56.6203002929688},\"rot\":{\"x\":0.0208076275885105,\"y\":270.003295898438,\"z\":0.0167724508792162}},\"c341ba\":{\"lock\":false,\"pos\":{\"x\":58.3838996887207,\"y\":1.3094288110733,\"z\":90.0904006958008},\"rot\":{\"x\":0.0208113472908735,\"y\":269.990203857422,\"z\":0.0167676005512476}},\"c62fbd\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3011,\"z\":83.2487},\"rot\":{\"x\":0.0208,\"y\":270.0037,\"z\":0.0168}},\"cbd462\":{\"lock\":false,\"pos\":{\"x\":40.2900772094727,\"y\":1.3030561208725,\"z\":-49.7199745178223},\"rot\":{\"x\":0.020807595923543,\"y\":270.003295898438,\"z\":0.0167722515761852}},\"ccb8b7\":{\"lock\":false,\"pos\":{\"x\":45.6395,\"y\":1.3023,\"z\":-58.9087},\"rot\":{\"x\":0.0208,\"y\":270.0276,\"z\":0.0168}},\"cf22a5\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.3075715303421,\"z\":90.1412963867188},\"rot\":{\"x\":0.0208075325936079,\"y\":270.003387451172,\"z\":0.0167726632207632}},\"cf6388\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30024600028992,\"z\":-75.0203018188477},\"rot\":{\"x\":0.0208079405128956,\"y\":270.002288818359,\"z\":0.0167719218879938}},\"cfabbb\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.29364931583405,\"z\":-77.3083114624023},\"rot\":{\"x\":0.0208070334047079,\"y\":270.003387451172,\"z\":0.0167720057070255}},\"cfcf88\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.30016577243805,\"z\":64.8411026000977},\"rot\":{\"x\":0.0208189412951469,\"y\":269.964385986328,\"z\":0.016758244484663}},\"d043d8\":{\"lock\":false,\"pos\":{\"x\":40.2900810241699,\"y\":1.30103635787964,\"z\":-56.6199836730957},\"rot\":{\"x\":0.0208079572767019,\"y\":270.003326416016,\"z\":0.0167730115354061}},\"d35022\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.30311810970306,\"z\":90.1486968994141},\"rot\":{\"x\":0.020810978487134,\"y\":269.9912109375,\"z\":0.0167680829763412}},\"d4125c\":{\"lock\":false,\"pos\":{\"x\":49.5629005432129,\"y\":1.30691683292389,\"z\":92.4527969360352},\"rot\":{\"x\":0.0208070818334818,\"y\":270.004638671875,\"z\":0.0167729929089546}},\"d5ccd4\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.30495870113373,\"z\":-58.9202995300293},\"rot\":{\"x\":0.0208066385239363,\"y\":270.006500244141,\"z\":0.0167735181748867}},\"daeb1f\":{\"lock\":false,\"pos\":{\"x\":49.2785148620605,\"y\":1.30161106586456,\"z\":-65.8086318969727},\"rot\":{\"x\":0.0208070781081915,\"y\":270.003387451172,\"z\":0.0167719218879938}},\"dbca56\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.2956690788269,\"z\":-70.4082870483398},\"rot\":{\"x\":0.0208059251308441,\"y\":270.008087158203,\"z\":0.0167739223688841}},\"dbdc1a\":{\"lock\":false,\"pos\":{\"x\":40.2900733947754,\"y\":1.29834342002869,\"z\":-65.8198394775391},\"rot\":{\"x\":0.0208074897527695,\"y\":270.003387451172,\"z\":0.0167724341154099}},\"dd8e57\":{\"lock\":false,\"pos\":{\"x\":40.9602012634277,\"y\":1.29773211479187,\"z\":71.7487030029297},\"rot\":{\"x\":0.0208076871931553,\"y\":270.003295898438,\"z\":0.0167723465710878}},\"e07e1d\":{\"lock\":false,\"pos\":{\"x\":40.2742958068848,\"y\":1.29160833358765,\"z\":-88.8093032836914},\"rot\":{\"x\":0.0208087563514709,\"y\":269.999969482422,\"z\":0.0167711470276117}},\"eb4ad7\":{\"lock\":false,\"pos\":{\"x\":52.9441986083984,\"y\":1.29957282543182,\"z\":-77.320198059082},\"rot\":{\"x\":0.0208075121045113,\"y\":270.003387451172,\"z\":0.0167724043130875}},\"ed7274\":{\"lock\":false,\"pos\":{\"x\":58.3838005065918,\"y\":1.2993301153183,\"z\":55.5903015136719},\"rot\":{\"x\":0.0208074320107698,\"y\":270.003387451172,\"z\":0.016772435978055}},\"f188b8\":{\"lock\":false,\"pos\":{\"x\":40.9634017944336,\"y\":1.29302072525024,\"z\":55.6492004394531},\"rot\":{\"x\":0.0208048261702061,\"y\":270.013000488281,\"z\":0.0167757943272591}},\"f55650\":{\"lock\":false,\"pos\":{\"x\":40.2901,\"y\":1.3004,\"z\":-58.92},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"f61b79\":{\"lock\":false,\"pos\":{\"x\":58.0997009277344,\"y\":1.30479645729065,\"z\":-65.8707962036133},\"rot\":{\"x\":0.0208076536655426,\"y\":270.003295898438,\"z\":0.0167725048959255}},\"f64477\":{\"lock\":false,\"pos\":{\"x\":36.6243591308594,\"y\":1.30105495452881,\"z\":-52.0084114074707},\"rot\":{\"x\":0.0208092071115971,\"y\":269.998901367188,\"z\":0.016771512106061}},\"fb9eb4\":{\"lock\":false,\"pos\":{\"x\":53.2285995483398,\"y\":1.30487835407257,\"z\":80.9412002563477},\"rot\":{\"x\":0.0208079367876053,\"y\":270.002288818359,\"z\":0.0167719591408968}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "f55650",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.29006,
|
|
"posY": 1.30036306,
|
|
"posZ": -58.920002,
|
|
"rotX": 0.0208084825,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167711,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Underwood Typewriter (1)",
|
|
"Description": "Model No. 5",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"DarrellCyclop_memory_object"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 632500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6325": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1691650299052482953/104BCF334DD65D5055F4DCB9E5868ED55CA7CAF1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ccb8b7",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 45.63947,
|
|
"posY": 1.30230916,
|
|
"posZ": -58.9086723,
|
|
"rotX": 0.0208006371,
|
|
"rotY": 270.027618,
|
|
"rotZ": 0.0167818926,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Investigative Report",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"DarrellCyclop_memory_object"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6314": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1691650299052480359/66EF9C2D12704E4D3DF249164955BD2715F87DCB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "00b150",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 49.2785,
|
|
"posY": 1.29622519,
|
|
"posZ": -84.2086,
|
|
"rotX": 0.0208077244,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.0167723987,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Shepherd (4)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 623600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6236": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593441874/DA9A8E737FB728BFB693EA77100123CE256968F2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "00d373",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.3839,
|
|
"posY": 1.30202317,
|
|
"posZ": 64.7902,
|
|
"rotX": 0.02081208,
|
|
"rotY": 269.987427,
|
|
"rotZ": 0.0167667028,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Living Link",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6209": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593361907/8BF2BCE3152B0A80A8AD63E2BED9314ABF814757/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "01b154",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.3839,
|
|
"posY": 1.30404294,
|
|
"posZ": 71.6904,
|
|
"rotX": 0.0208075922,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167724825,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dressed to the Nines",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 627600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6276": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910600224/7EB2ADB9B680AFFF3FB47504562DB18D085702D1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "02f4c4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.29705894,
|
|
"posZ": 69.4487,
|
|
"rotX": 0.0208080355,
|
|
"rotY": 270.0014,
|
|
"rotZ": 0.0167717673,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ancient Crossbow",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 616500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6165": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592832442/60E273D0E25E33212532528971D5E6D428A4541D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "07c8fc",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 49.5629,
|
|
"posY": 1.30153084,
|
|
"posZ": 74.0528,
|
|
"rotX": 0.02081707,
|
|
"rotY": 269.9716,
|
|
"rotZ": 0.0167608336,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Seduce",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 623400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6234": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593431134/981EEA27D6C74083A0A2BDAC20EEF175A19D7690/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0d0972",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.30226576,
|
|
"posZ": -68.1202,
|
|
"rotX": 0.0208085682,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167713948,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Seduce (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 623500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6235": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593431944/E9EE5E4B2EE295C69A952A3E413A435A96EAADAD/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "109a44",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9441,
|
|
"posY": 1.29755306,
|
|
"posZ": -84.2202,
|
|
"rotX": 0.020807473,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167724062,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Resilient (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6311": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521223903015051/1E4001616B8D26D20BDB56491E6CA0BC10C0E40A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "10e901",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.30379128,
|
|
"posZ": 92.4487,
|
|
"rotX": 0.0208129957,
|
|
"rotY": 269.9846,
|
|
"rotZ": 0.0167655945,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Throwing Knife",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 627200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6272": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910594057/94AC0472D88AD4A1E83F9476861E247C9F6B68A5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "142c11",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.30293894,
|
|
"posZ": -65.8202,
|
|
"rotX": 0.0208077654,
|
|
"rotY": 270.0023,
|
|
"rotZ": 0.01677194,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood Money (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6172": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592845548/1E46C2A4821CED58DE1B67437F9E382D81E28C92/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "150541",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.30824471,
|
|
"posZ": 92.4412,
|
|
"rotX": 0.0208129417,
|
|
"rotY": 269.9852,
|
|
"rotZ": 0.01676581,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rally",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6226": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593423394/A0C740B197D6A23119E5679EEC0486B993594588/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1a9c68",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.30428541,
|
|
"posZ": -61.2203,
|
|
"rotX": 0.0208061971,
|
|
"rotY": 270.008545,
|
|
"rotZ": 0.0167743638,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Nullius In Verba (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 626400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6264": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593379717/9A09E2E6A7FA4909DDA50524784D5C7E026E4782/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1b28e1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62436,
|
|
"posY": 1.30172813,
|
|
"posZ": -49.7084465,
|
|
"rotX": 0.0208085682,
|
|
"rotY": 270.0002,
|
|
"rotZ": 0.0167712439,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tactician (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 624300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6243": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593452723/4354245798F0C065A8AED9EEB5C68D8264BC0EA5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1fbf7c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62436,
|
|
"posY": 1.292976,
|
|
"posZ": -79.60827,
|
|
"rotX": 0.0208073743,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167725012,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Enchanting Grace (5)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6187": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592864034/E58D0320591ABE3036E9DCB2BCD85115B400CC6B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "267617",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.2994926,
|
|
"posZ": 62.5412,
|
|
"rotX": 0.0208086949,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167710371,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Astral Sea",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 625900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6259": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728943666912414/E191AD302E6F4C139AC429EEECD4FEA293217BC1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "VALID_TOKENS = {\n [\"Bless\"]=true,\n [\"Curse\"]=true\n}\n\nfunction onload()\n chaosbag = getChaosBag()\n sealedTokens = { }\n IMAGE_TOKEN_MAP = { }\n for i,v in pairs(Global.getVar(\"IMAGE_TOKEN_MAP\")) do\n IMAGE_TOKEN_MAP[i] = v\n end\n\n -- add menu items\n self.clearContextMenu()\n self.addContextMenuItem(\"Release Token\", releaseTokens)\n for url,name in pairs(IMAGE_TOKEN_MAP) do\n if VALID_TOKENS[name] ~= nil then\n self.addContextMenuItem(\"Seal \" .. name, function(playerColor) sealToken(url, playerColor) end)\n end\n end\nend\n\nfunction sealToken(url, playerColor)\n local pos = self.getPosition()\n\n local name = IMAGE_TOKEN_MAP[url]\n for i,obj in ipairs(chaosbag.getObjects()) do\n if obj.name == name then\n chaosbag.takeObject({\n position={ pos.x, pos.y + 1, pos.z },\n index=i-1,\n smooth=false,\n callback_function=_sealToken\n })\n return\n end\n end\n printToColor(name .. \" token not found in bag\", playerColor)\nend\n\nfunction _sealToken(obj)\n table.insert(sealedTokens, obj)\nend\n\nfunction releaseTokens(playerColor)\n printToColor(\"Releasing token\", playerColor)\n for i,obj in ipairs(sealedTokens) do\n chaosbag.putObject(obj)\n end\n sealedTokens = { }\nend\n\nfunction getChaosBag()\n local items = getObjectFromGUID(\"83ef06\").getObjects()\n local chaosbag = nil\n for i,v in ipairs(items) do\n if v.getDescription() == \"Chaos Bag\" then\n chaosbag = getObjectFromGUID(v.getGUID())\n break\n end\n end\n if chaosbag == nil then printToAll(\"No chaos bag found\") end\n return chaosbag\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2747a3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.30244482,
|
|
"posZ": 87.8487,
|
|
"rotX": 0.0208124779,
|
|
"rotY": 269.9867,
|
|
"rotZ": 0.0167662911,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "My Body as a Shield",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6213": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593377597/F8CF208C6818D867DAC3427D3282970E1AE7E70A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2777b2",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.0996,
|
|
"posY": 1.29941058,
|
|
"posZ": -84.2709,
|
|
"rotX": 0.0208086111,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167712215,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Strained Nerves (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 624200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6242": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593451779/E135E9279B3C7AECF1A4678B9DABA5F425A769E2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2842c4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 49.2785,
|
|
"posY": 1.298918,
|
|
"posZ": -75.0088,
|
|
"rotX": 0.020807445,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167724043,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rapid Healing (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6227": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593424524/9036F7EB7F381838C6646BDE79A7EDB11DDBEB89/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "29825a",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 37.4159164,
|
|
"posY": 1.31350362,
|
|
"posZ": 55.66081,
|
|
"rotX": 0.0208073277,
|
|
"rotY": 270.0074,
|
|
"rotZ": 0.01677474,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
617500,
|
|
617500,
|
|
617500
|
|
],
|
|
"CustomDeck": {
|
|
"6175": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592848589/6A29E1A93377DD095ABC3BE32C7140D49EF1A584/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "ce12ab",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 24.0523243,
|
|
"posY": 1.291785,
|
|
"posZ": -68.0788651,
|
|
"rotX": 0.0208079685,
|
|
"rotY": 270.000732,
|
|
"rotZ": 0.0167706925,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bloodline",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6175": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592848589/6A29E1A93377DD095ABC3BE32C7140D49EF1A584/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0e2cbb",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 24.3666039,
|
|
"posY": 1.32945073,
|
|
"posZ": -68.076355,
|
|
"rotX": 0.0208078139,
|
|
"rotY": 270.000732,
|
|
"rotZ": 0.0167704448,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bloodline",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6175": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592848589/6A29E1A93377DD095ABC3BE32C7140D49EF1A584/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a1d957",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2306137,
|
|
"posY": 1.36281979,
|
|
"posZ": 57.9409752,
|
|
"rotX": 0.020803431,
|
|
"rotY": 270.0007,
|
|
"rotZ": 0.0167881455,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bloodline",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6175": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592848589/6A29E1A93377DD095ABC3BE32C7140D49EF1A584/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "29cafa",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.3839,
|
|
"posY": 1.30471611,
|
|
"posZ": 73.9904,
|
|
"rotX": 0.0208083373,
|
|
"rotY": 270.0006,
|
|
"rotZ": 0.016771581,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Contingency",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 627500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6275": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910599238/6F297A0B7181F977F4F402D458613EFC7F9B5A3F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "330c58",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.29007,
|
|
"posY": 1.296997,
|
|
"posZ": -70.4198456,
|
|
"rotX": 0.020807391,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.016772436,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Reconnaissance (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 632300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6323": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862801063453993202/93A73C2A3A473A6A20EE92B4777C6F04C2D68EE7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "369ccc",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9443,
|
|
"posY": 1.29687989,
|
|
"posZ": -86.5202,
|
|
"rotX": 0.02080641,
|
|
"rotY": 270.0076,
|
|
"rotZ": 0.0167739484,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Premature (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6222": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593389199/2C99ABA6917F375D9A5F88DAC6E090CF49A664B5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3a1b65",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2128,
|
|
"posY": 1.29612362,
|
|
"posZ": 51.0517,
|
|
"rotX": 0.0208161362,
|
|
"rotY": 269.974121,
|
|
"rotZ": 0.01676169,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Stopping for the Night",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 624100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6241": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593450592/12D9CE0A3A4B6FCCF137FC2438159D311B0FFE86/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4234ff",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.30555177,
|
|
"posZ": 83.2412,
|
|
"rotX": 0.0208080616,
|
|
"rotY": 270.0023,
|
|
"rotZ": 0.0167718977,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eliminate the Impossible",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6185": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592862381/BFA29B51568D35D69D43EC57DF7305F754ADD3D2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "43ab37",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2900734,
|
|
"posY": 1.29767025,
|
|
"posZ": -68.11984,
|
|
"rotX": 0.02080758,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167724248,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Heist (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 629600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6296": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1782841546154107977/AA77B6337D906545E03211F02D3789B9F36A39D0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "48795b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.30420518,
|
|
"posZ": 78.6412,
|
|
"rotX": 0.0208084881,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0167711619,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tracks in the Snow",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 624700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6247": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593458540/E6F33AA2027F37191F33F574E59F3814EEC42BF8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4a8864",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62434,
|
|
"posY": 1.30240142,
|
|
"posZ": -47.408432,
|
|
"rotX": 0.0208082553,
|
|
"rotY": 270.000763,
|
|
"rotZ": 0.0167714171,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Brawler (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6176": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592849440/301C9A771239D0492C1D698E2F3AB3472B0FEB6D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4ad7d5",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.30697846,
|
|
"posZ": -52.0203,
|
|
"rotX": 0.0208075941,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.0167722087,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rally (4)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6225": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593420241/83D8EFD4EEFE9016CDF1AB6BCC2A137585454CE0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4b8a01",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.3839,
|
|
"posY": 1.30673587,
|
|
"posZ": 80.8904,
|
|
"rotX": 0.0208077766,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.016772354,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Keykeeper",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6204": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593356143/29AF2A0368A28951E5789F50E93FD888079756A6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4ee29d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62434,
|
|
"posY": 1.2983619,
|
|
"posZ": -61.2084427,
|
|
"rotX": 0.0208076034,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.01677243,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Forbidden Sutra (5)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6191": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592947590/6024BD666B7ADD780A1847D9592ADC0A69D45C3F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5094ce",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.3839,
|
|
"posY": 1.3006767,
|
|
"posZ": 60.1903,
|
|
"rotX": 0.0208029039,
|
|
"rotY": 270.0188,
|
|
"rotZ": 0.016778117,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Delirium",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6179": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592852132/AB0B3104E796B62E8F2ABDC57991AE4A85D23C50/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "53b5a9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.2988193,
|
|
"posZ": 60.2412,
|
|
"rotX": 0.0208074953,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.0167724527,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spellshifting",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 628000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6280": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910605376/0AB7D558B301F94B47B7E7538F207457CA2F2326/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "54fa2c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.30151224,
|
|
"posZ": 69.4412,
|
|
"rotX": 0.0207993221,
|
|
"rotY": 270.032,
|
|
"rotZ": 0.01678272,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Intimidate",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 627700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6277": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910601528/EDC69B2A7481CEE97C52E501B13AF579EFA6113F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "55d2f8",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.29007,
|
|
"posY": 1.29968989,
|
|
"posZ": -61.21999,
|
|
"rotX": 0.0208076164,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.01677245,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Wanderlust (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 625300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6253": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593479348/6D11F02547C8CE5ABB828946370538C0E606A1B1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5d5807",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 37.416,
|
|
"posY": 1.29442871,
|
|
"posZ": 64.8607,
|
|
"rotX": 0.0208077673,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.016772436,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ritual Dagger",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 623200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6232": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593429312/A189304F03A0687846BB4C10133E939E804E4AB8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5d9979",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.29011,
|
|
"posY": 1.29228425,
|
|
"posZ": -86.51989,
|
|
"rotX": 0.0208127853,
|
|
"rotY": 269.985229,
|
|
"rotZ": 0.0167658553,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Madame Labranche (2)",
|
|
"Description": "Mysterious Benefactress",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 626000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6260": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728943666913756/B39354AFA7F223128AA64F9BD9036B9A682C2570/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5e5144",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.29503918,
|
|
"posZ": 62.5488,
|
|
"rotX": 0.0208076276,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.0167723577,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Enchanting Grace",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6188": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592864948/D727B73FBF2AD722316ABF5E22528D2C4B140634/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "614074",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.29889953,
|
|
"posZ": -79.6202,
|
|
"rotX": 0.0208074935,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.016772408,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Holy Circle (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6196": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592953463/32A59E1AE405433DD720A9E1AF88F045F0B71483/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "63e44e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62436,
|
|
"posY": 1.29701555,
|
|
"posZ": -65.80828,
|
|
"rotX": 0.02080819,
|
|
"rotY": 270.0015,
|
|
"rotZ": 0.0167718641,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ancient Crossbow (3)",
|
|
"Description": "Venomous Bolts",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6216": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592827529/0103846F7C11122213B128BC3C655834A0FF22D7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "660e71",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9603,
|
|
"posY": 1.294366,
|
|
"posZ": 60.2488,
|
|
"rotX": 0.0208038874,
|
|
"rotY": 270.0154,
|
|
"rotZ": 0.0167767089,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Plumb the Void",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 628200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6282": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910608245/26F25981B0F05FCB7CE2279585BEFF0B61F34AC0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "66a2cb",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.29975188,
|
|
"posZ": 78.6487,
|
|
"rotX": 0.0208080467,
|
|
"rotY": 270.0023,
|
|
"rotZ": 0.0167718735,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Telescope",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 625600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6256": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728943666900731/052F5D9E47422E80108CE61CA4F8929B27281816/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "683863",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.30689824,
|
|
"posZ": 87.8412,
|
|
"rotX": 0.0208085142,
|
|
"rotY": 270.000732,
|
|
"rotZ": 0.016771527,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Christmas on the Front Lines",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6177": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592850430/583EC29CA10BBA19E9E60D4E7DE7EFBD1CA28794/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6dc636",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.30765164,
|
|
"posZ": -49.7203,
|
|
"rotX": 0.020807974,
|
|
"rotY": 270.0023,
|
|
"rotZ": 0.0167719573,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Armistice (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 616700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6167": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592838580/D05E494CD76CB9B1B307BCD96F0D71689694E549/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "701495",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.29006,
|
|
"posY": 1.3037293,
|
|
"posZ": -47.42,
|
|
"rotX": 0.0208170824,
|
|
"rotY": 269.9704,
|
|
"rotZ": 0.0167604145,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Painkillers (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6301": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1782841546154124731/98EFE40B41CEAB2948817289897AC50539FC4656/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "74d8f2",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2901535,
|
|
"posY": 1.30238628,
|
|
"posZ": -52.0084648,
|
|
"rotX": 0.0208003242,
|
|
"rotY": 270.028,
|
|
"rotZ": 0.0167812016,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Beacon (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6316": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592840662/037E6A75AAC617464035092B28A7CDB640518AF5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "762ef7",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.60867,
|
|
"posY": 1.29028046,
|
|
"posZ": -88.79773,
|
|
"rotX": 0.02080689,
|
|
"rotY": 270.0057,
|
|
"rotZ": 0.0167731363,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "One Eye Open (4)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6306": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759387146/E8ECCF7A246B490B888B118FA4CEE5F372D9ABD5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "789fd5",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.29840541,
|
|
"posZ": 74.0487,
|
|
"rotX": 0.0208060555,
|
|
"rotY": 270.0084,
|
|
"rotZ": 0.0167742539,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Molly Brown",
|
|
"Description": "Unsinkable Philanthropist",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728943667456131/D37496AD69A6052A5880364B56DB0A6F886CE27C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "79832a",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62434,
|
|
"posY": 1.29903519,
|
|
"posZ": -58.90844,
|
|
"rotX": 0.0208083689,
|
|
"rotY": 270.0005,
|
|
"rotZ": 0.0167710986,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dream-Inducing Serum (3)",
|
|
"Description": "Ex Oblivione",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 628600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6286": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910614183/9E92A8D66E14EAEE0E4B208FD364AD50B047ECAD/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7ceaf0",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.30832493,
|
|
"posZ": -47.4203,
|
|
"rotX": 0.0208075941,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.01677254,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rendezvous (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6229": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593426312/411ECAEC6A971BCC685882830FE2C3A81FFE9A67/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7e06de",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2901,
|
|
"posY": 1.294304,
|
|
"posZ": -79.6199,
|
|
"rotX": 0.0208078977,
|
|
"rotY": 270.0024,
|
|
"rotZ": 0.016772069,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood Sigil (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6173": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592846395/B584FC025F7928FF4A61C7F314B76AF69859A6A9/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "800a44",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.29571235,
|
|
"posZ": 64.8487,
|
|
"rotX": 0.02081108,
|
|
"rotY": 269.9912,
|
|
"rotZ": 0.0167679749,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Myrtle Mason",
|
|
"Description": "Prodigy of the Sisterhood",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 628100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6281": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910607093/6FFAEFD5B9296DF58C5336DF3B974E59785BDCDE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "82f8b3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62672,
|
|
"posY": 1.29970145,
|
|
"posZ": -56.63513,
|
|
"rotX": 0.0208075717,
|
|
"rotY": 270.0036,
|
|
"rotZ": 0.0167723671,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dream-Inducing Serum (3)",
|
|
"Description": "Possessed by Polaris",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 628500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6285": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910612839/5A9AB70561693D7D8B13C86A8CBE8A7026186FFA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "89945d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.29679954,
|
|
"posZ": 53.3412,
|
|
"rotX": 0.0208074618,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.01677236,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tread Water",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6310": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521223902946133/0AC30B49EEFA43B3C7E4ED083C0B4054A4FBD508/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8bfe17",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62436,
|
|
"posY": 1.29634225,
|
|
"posZ": -68.108284,
|
|
"rotX": 0.02080759,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167724211,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Socialite",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6304": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1782841546154166070/75B1798BD0952CC2196632FD9D74BBBCB8F15CE2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8c5545",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 49.5629,
|
|
"posY": 1.30422378,
|
|
"posZ": 83.2528,
|
|
"rotX": 0.0208075549,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.0167721789,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Two Steps Ahead",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 626600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6266": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728943668918506/E53178FC1D6F67FFB2EEDC120A3A134528DED6E3/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8cd304",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9634,
|
|
"posY": 1.29234755,
|
|
"posZ": 53.3492,
|
|
"rotX": 0.02080424,
|
|
"rotY": 270.0142,
|
|
"rotZ": 0.0167764723,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Leather Pouch",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6208": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593360842/D66116F0578D02199B2BF4F27BAA6F2913DD21A2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "902329",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.9853058,
|
|
"posY": 1.29838681,
|
|
"posZ": -56.6083221,
|
|
"rotX": 0.02081407,
|
|
"rotY": 269.9807,
|
|
"rotZ": 0.0167641975,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Amery Wendy-Smith (4)",
|
|
"Description": "Esteemed Antiquarian",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6318": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1750191814759389106/4C206883CE50388AA47C563780059C9F9914561D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "972be8",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.30218554,
|
|
"posZ": 71.7412,
|
|
"rotX": 0.0208017845,
|
|
"rotY": 270.0234,
|
|
"rotZ": 0.0167796444,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Whack",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 625400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6254": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593480021/142C12115A979032F1292358F42B986E6A44DEA0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9aa61e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2900658,
|
|
"posY": 1.29565036,
|
|
"posZ": -75.01997,
|
|
"rotX": 0.02080748,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.01677241,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Forbidden Knowledge (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 629800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6298": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1782841546154116038/3A0BC8EEC3D5D1F09D464DC9BB38998073F2E8B5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9cf29d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 49.5628,
|
|
"posY": 1.296145,
|
|
"posZ": 55.6528,
|
|
"rotX": 0.020815827,
|
|
"rotY": 269.9753,
|
|
"rotZ": 0.0167620759,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cleansing Ritual",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 628300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6283": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910609650/804E4F61312A33773428A799087272404623308A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a0d589",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62436,
|
|
"posY": 1.29095638,
|
|
"posZ": -86.50828,
|
|
"rotX": 0.0208068471,
|
|
"rotY": 270.0057,
|
|
"rotZ": 0.0167732053,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Plumb the Void (3)",
|
|
"Description": "Survivor",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 629200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6292": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910622971/928240224A29BC95ED7DC6D281354FDFD906968C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a8a701",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.30285883,
|
|
"posZ": 74.0412,
|
|
"rotX": 0.0208188687,
|
|
"rotY": 269.9648,
|
|
"rotZ": 0.0167583469,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pastime",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 626700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6267": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593383875/E8C4D3C647D8596AEA27CFAEB4D3A04F9339F44B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ab5ff8",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62436,
|
|
"posY": 1.29162967,
|
|
"posZ": -84.2082748,
|
|
"rotX": 0.0208080616,
|
|
"rotY": 270.0016,
|
|
"rotZ": 0.0167717561,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ancient Crossbow (3)",
|
|
"Description": "Family Heirloom",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 631900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6319": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592831689/1E245B64341D007ACC62410EDD42D4450784C00E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "af0339",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2899628,
|
|
"posY": 1.29295743,
|
|
"posZ": -84.2198944,
|
|
"rotX": 0.0208074786,
|
|
"rotY": 270.003357,
|
|
"rotZ": 0.0167724155,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Knife (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 632000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6320": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1782841546154825407/FF6C9AEB5BC553ED9A84486662E61DF860CF225C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b219d3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442253,
|
|
"posY": 1.30159247,
|
|
"posZ": -70.4202,
|
|
"rotX": 0.0208075773,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.0167724639,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Intimidate (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 628700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6287": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910615812/616E1C106C78E97A19F37D63BFEAF050A5B279BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b2223d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.3839,
|
|
"posY": 1.31010211,
|
|
"posZ": 92.3904,
|
|
"rotX": 0.0208075475,
|
|
"rotY": 270.004,
|
|
"rotZ": 0.01677245,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Technician",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 626500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6265": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728943668920175/296774F7C39EB0DCA5AC79DE62230E35E2E33063/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b3d14a",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.300425,
|
|
"posZ": 80.9487,
|
|
"rotX": 0.02080794,
|
|
"rotY": 270.0023,
|
|
"rotZ": 0.0167721,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Erica Carlyle",
|
|
"Description": "Searching for Roger",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 632400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6324": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862801063453998300/40095F67B993B0C40A4A790951A1E8B475C23487/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b44416",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.0997,
|
|
"posY": 1.31018245,
|
|
"posZ": -47.471,
|
|
"rotX": 0.0208075512,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.0167724434,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Valor (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 626900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6269": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728983836524243/C1FBE4BA7D2560F2BC2E162EEE1CA09564CB6CCD/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bae94d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.3839,
|
|
"posY": 1.30135,
|
|
"posZ": 62.4903,
|
|
"rotX": 0.0208078437,
|
|
"rotY": 270.0026,
|
|
"rotZ": 0.01677217,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Imbue",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 627800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6278": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910603030/64F59CDC2B8F0F7D80D1A1E772A993560891F4B6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bb5171",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62436,
|
|
"posY": 1.29432249,
|
|
"posZ": -75.0084,
|
|
"rotX": 0.020808747,
|
|
"rotY": 269.9996,
|
|
"rotZ": 0.0167710371,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Favor of Eshu (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6190": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592945701/BA25C5DCFBAC8B5BB3D345A67E10FEC3609C309A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "VALID_TOKENS = {\n [\"+1\"]=true,\n [\"-1\"]=true,\n [\"-2\"]=true,\n [\"-3\"]=true,\n [\"-4\"]=true,\n [\"-5\"]=true,\n [\"-6\"]=true,\n [\"-7\"]=true,\n [\"-8\"]=true,\n [\"Skull\"]=true,\n [\"Cultist\"]=true,\n [\"Tablet\"]=true,\n [\"Elder Thing\"]=true,\n [\"Bless\"]=true,\n [\"Curse\"]=true\n}\n\nfunction onload()\n chaosbag = getChaosBag()\n sealedTokens = { }\n IMAGE_TOKEN_MAP = { }\n for i,v in pairs(Global.getVar(\"IMAGE_TOKEN_MAP\")) do\n IMAGE_TOKEN_MAP[i] = v\n end\n\n -- add menu items\n self.clearContextMenu()\n self.addContextMenuItem(\"Release Token\", releaseTokens)\n for url,name in pairs(IMAGE_TOKEN_MAP) do\n if VALID_TOKENS[name] ~= nil then\n self.addContextMenuItem(\"Seal \" .. name, function(playerColor) sealToken(url, playerColor) end)\n end\n end\nend\n\nfunction sealToken(url, playerColor)\n local pos = self.getPosition()\n\n local name = IMAGE_TOKEN_MAP[url]\n for i,obj in ipairs(chaosbag.getObjects()) do\n if obj.name == name then\n chaosbag.takeObject({\n position={ pos.x, pos.y + 1, pos.z },\n index=i-1,\n smooth=false,\n callback_function=_sealToken\n })\n return\n end\n end\n printToColor(name .. \" token not found in bag\", playerColor)\nend\n\nfunction _sealToken(obj)\n table.insert(sealedTokens, obj)\nend\n\nfunction releaseTokens(playerColor)\n printToColor(\"Releasing token\", playerColor)\n for i,obj in ipairs(sealedTokens) do\n chaosbag.putObject(obj)\n end\n sealedTokens = { }\nend\n\nfunction getChaosBag()\n local items = getObjectFromGUID(\"83ef06\").getObjects()\n local chaosbag = nil\n for i,v in ipairs(items) do\n if v.getDescription() == \"Chaos Bag\" then\n chaosbag = getObjectFromGUID(v.getGUID())\n break\n end\n end\n if chaosbag == nil then printToAll(\"No chaos bag found\") end\n return chaosbag\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bc2dcc",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9284,
|
|
"posY": 1.29620385,
|
|
"posZ": -88.8097,
|
|
"rotX": 0.02080804,
|
|
"rotY": 270.0023,
|
|
"rotZ": 0.0167720281,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Better Together (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 632200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6322": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521223903024611/34FED1C36C356F1C74446B5CD417B26C8A88A2DB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c0a46b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2285,
|
|
"posY": 1.29747283,
|
|
"posZ": 55.6412,
|
|
"rotX": 0.0208080281,
|
|
"rotY": 270.0023,
|
|
"rotZ": 0.01677203,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act of Resistance",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6215": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592826257/398D07C03707C2EEC905C62960C3699C1857AC18/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c1905b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.29007,
|
|
"posY": 1.29497719,
|
|
"posZ": -77.31988,
|
|
"rotX": 0.0208091438,
|
|
"rotY": 269.9982,
|
|
"rotZ": 0.0167707019,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Plumb the Void (3)",
|
|
"Description": "Mystic",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 628900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6289": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910618621/D54F083535A3D98BF664DDE32CD0A6D4F938CA5B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c2fcb8",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.3839,
|
|
"posY": 1.30740917,
|
|
"posZ": 83.1904,
|
|
"rotX": 0.02080844,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.0167711042,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Inspect",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 627400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6274": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910596824/48CE3263537BF7E4138C55A0C058866F12FC080B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c33f5f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.30563188,
|
|
"posZ": -56.6203,
|
|
"rotX": 0.0208075326,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.01677231,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Search Party (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 623300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6233": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593430264/3D00721537577B2489B90DA07FC660099E90D64C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c341ba",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.3839,
|
|
"posY": 1.30942881,
|
|
"posZ": 90.0904,
|
|
"rotX": 0.02081128,
|
|
"rotY": 269.9902,
|
|
"rotZ": 0.0167677887,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Resolve",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 623100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6231": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593428065/E6FD37D7EC54E851D7DDEB2167D58245D058335F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c62fbd",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.30109835,
|
|
"posZ": 83.2487,
|
|
"rotX": 0.020807432,
|
|
"rotY": 270.0037,
|
|
"rotZ": 0.01677241,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dream-Inducing Serum",
|
|
"Description": "Unidentified",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 627300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6273": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910595440/502F0892747FA0AC86005BA7389BCED90F251694/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cbd462",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2900772,
|
|
"posY": 1.30305612,
|
|
"posZ": -49.7199745,
|
|
"rotX": 0.02080775,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.0167724658,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Umbrella Sword (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 625000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6250": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593476743/1C2DFC4BAB48413CC04A3C1891B0622A12EF376E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cf22a5",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.30757153,
|
|
"posZ": 90.1413,
|
|
"rotX": 0.0208073687,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167723875,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "High Treason",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6195": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592952566/F93AD2E9EBFD863852E561DA01664031D691EB3E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cf6388",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.300246,
|
|
"posZ": -75.0203,
|
|
"rotX": 0.0208079629,
|
|
"rotY": 270.0023,
|
|
"rotZ": 0.01677199,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood Tithe (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6174": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592847713/AA4B631E6CC89C4EF3CD54C9B9708382DCB05AF5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cfabbb",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62436,
|
|
"posY": 1.29364932,
|
|
"posZ": -77.30831,
|
|
"rotX": 0.0208074152,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.016772477,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Enchanting Grace (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6186": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592863152/FCC0C99399D450A7F49580ADBABA49EE429C003A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cfcf88",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.30016577,
|
|
"posZ": 64.8411,
|
|
"rotX": 0.020818973,
|
|
"rotY": 269.9644,
|
|
"rotZ": 0.0167581849,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Beckoned by the Light",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 617000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6170": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592841819/00059DEEFC5DD267AACC61D16803D319B48400F7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d043d8",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.29008,
|
|
"posY": 1.30103636,
|
|
"posZ": -56.6199837,
|
|
"rotX": 0.0208074283,
|
|
"rotY": 270.003326,
|
|
"rotZ": 0.01677241,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Medical Texts (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 630000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6300": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1782841546154121206/0EED92A409B7C0FB98FDD18788AD0C44CFC71670/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d35022",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.30311811,
|
|
"posZ": 90.1487,
|
|
"rotX": 0.0208111685,
|
|
"rotY": 269.9912,
|
|
"rotZ": 0.0167677887,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pendant of the Acolyte",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6218": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593385109/4A8C004C43E53694B99C73B96CE80A337FCA4B0C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d4125c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 49.5629,
|
|
"posY": 1.30691683,
|
|
"posZ": 92.4528,
|
|
"rotX": 0.02080711,
|
|
"rotY": 270.004639,
|
|
"rotZ": 0.0167727,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Last Shot",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6207": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593359407/49DF624B18126C724B822CF77B9B2FCBD7BE7A37/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d5ccd4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.3049587,
|
|
"posZ": -58.9203,
|
|
"rotX": 0.020806808,
|
|
"rotY": 270.0065,
|
|
"rotZ": 0.0167735685,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Office Hours (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 626300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6263": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593381195/C127496803DB2A5F05CEDA3FDE628659ED5D4D4E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "daeb1f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 49.2785149,
|
|
"posY": 1.30161107,
|
|
"posZ": -65.80863,
|
|
"rotX": 0.0208076071,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167722553,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Intimidate (5)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 628800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6288": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910617271/9AE53D90A5B899444B429F96B63A1B770B6BACAF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dbca56",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62436,
|
|
"posY": 1.29566908,
|
|
"posZ": -70.40829,
|
|
"rotX": 0.0208060946,
|
|
"rotY": 270.0081,
|
|
"rotZ": 0.0167740434,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mimic (4)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6211": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593375851/B0C986300DE652FC386F0359DBC807DABFBAB506/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dbdc1a",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2900734,
|
|
"posY": 1.29834342,
|
|
"posZ": -65.81984,
|
|
"rotX": 0.0208075941,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167725533,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fine Clothes (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 629900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6299": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1782841546154118047/C9A4F7C2E5EF702652AD81B427655306F48268A6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dd8e57",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602,
|
|
"posY": 1.29773211,
|
|
"posZ": 71.7487,
|
|
"rotX": 0.0208078381,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.0167724639,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Snake Sword",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 629300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6293": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910625666/0AF07C4D25DD912601C8CEBF03B7FCBC258090E3/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e07e1d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.2742958,
|
|
"posY": 1.29160833,
|
|
"posZ": -88.8093,
|
|
"rotX": 0.0208084285,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0167712253,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Henry Wilcox (3)",
|
|
"Description": "Neurotic Genius",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 629100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6291": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910621758/529E9CDC16BA52378671720CCB4FA7374FA5564B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "eb4ad7",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 52.9442,
|
|
"posY": 1.29957283,
|
|
"posZ": -77.3202,
|
|
"rotX": 0.0208077,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167725384,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spellshifting (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 629000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6290": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799729145910619712/BD48CDED06C3D6B13E69DCEC83858677091D5A65/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ed7274",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.3838,
|
|
"posY": 1.29933012,
|
|
"posZ": 55.5903,
|
|
"rotX": 0.02080748,
|
|
"rotY": 270.0034,
|
|
"rotZ": 0.0167724043,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Kinship",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6205": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700593357069/B228728D29EE5CCDAE1921925966FBC5610BE3D1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f188b8",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9634,
|
|
"posY": 1.29302073,
|
|
"posZ": 55.6492,
|
|
"rotX": 0.0208047982,
|
|
"rotY": 270.013,
|
|
"rotZ": 0.016775772,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Grandmere's Knife",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6192": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592950077/3B43A5D94B02830DAC8CB097BE731747C3D690C9/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f61b79",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 58.0997,
|
|
"posY": 1.30479658,
|
|
"posZ": -65.8708,
|
|
"rotX": 0.0208075,
|
|
"rotY": 270.0033,
|
|
"rotZ": 0.0167724,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Extortion (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6189": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592865750/D27A66E983C29834E3820B574513F70D5CAFD212/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f64477",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 36.62436,
|
|
"posY": 1.301055,
|
|
"posZ": -52.00841,
|
|
"rotX": 0.02080884,
|
|
"rotY": 269.9989,
|
|
"rotZ": 0.0167707559,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Gatling Gun (5)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 625500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6255": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592949100/F7778345FC7840E319B88BE937FBA8223CFCEA53/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fb9eb4",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2286,
|
|
"posY": 1.30487859,
|
|
"posZ": 80.9412,
|
|
"rotX": 0.0208077729,
|
|
"rotY": 270.0023,
|
|
"rotZ": 0.01677192,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Archaeological Find",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 616600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6166": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1799728700592836280/996ABEE0478E6D64F9B8A99192DBD0ED153EABDC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
],
|
|
"AttachedDecals": [
|
|
{
|
|
"Transform": {
|
|
"posX": -0.0021877822,
|
|
"posY": -0.08963572,
|
|
"posZ": -0.00288731651,
|
|
"rotX": 270.0,
|
|
"rotY": 359.869568,
|
|
"rotZ": 0.0,
|
|
"scaleX": 2.00000215,
|
|
"scaleY": 2.00000238,
|
|
"scaleZ": 2.00000262
|
|
},
|
|
"CustomDecal": {
|
|
"Name": "dunwich_back",
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
|
|
"Size": 7.4
|
|
}
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"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
|
|
}
|
|
}
|
|
]
|
|
} |