8303 lines
257 KiB
JSON
8303 lines
257 KiB
JSON
{
|
|
"GUID": "64ad17",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 13.4037113,
|
|
"posY": 1.49807978,
|
|
"posZ": 39.315052,
|
|
"rotX": 4.508992E-05,
|
|
"rotY": 269.999329,
|
|
"rotZ": 0.385414273,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Kaimonogatari Player cards",
|
|
"Description": "version 1.5",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1644335793265681039/FD6A85925D62077C37F89B6AD082D15D90244D13/",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 3,
|
|
"TypeIndex": 6,
|
|
"CustomShader": {
|
|
"SpecularColor": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"SpecularIntensity": 0.0,
|
|
"SpecularSharpness": 2.0,
|
|
"FresnelStrength": 0.0
|
|
},
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
|
|
"LuaScriptState": "{\"ml\":{\"00b7d1\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2838,\"z\":87.0133},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"03a35e\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.283,\"z\":94.4496},\"rot\":{\"x\":0.0208,\"y\":270.0348,\"z\":0.0168}},\"03bf91\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2763,\"z\":71.4496},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"040cf6\":{\"lock\":false,\"pos\":{\"x\":19.4901,\"y\":1.2959,\"z\":92.0494},\"rot\":{\"x\":0.0208,\"y\":269.9989,\"z\":0.0168}},\"0441cb\":{\"lock\":false,\"pos\":{\"x\":-8.9837,\"y\":1.2729,\"z\":59.9495},\"rot\":{\"x\":0.0208,\"y\":269.9796,\"z\":0.0168}},\"0a6180\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2843,\"z\":94.4496},\"rot\":{\"x\":0.0208,\"y\":270.0153,\"z\":0.0168}},\"0cb1df\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2891,\"z\":73.8366},\"rot\":{\"x\":0.0208,\"y\":270.0189,\"z\":0.0168}},\"0cbe7d\":{\"lock\":false,\"pos\":{\"x\":-19.3011,\"y\":1.3122,\"z\":-69.0606},\"rot\":{\"x\":0.0206,\"y\":270.5735,\"z\":0.017}},\"0fd66c\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2925,\"z\":85.3358},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"0fd992\":{\"lock\":false,\"pos\":{\"x\":-19.3151,\"y\":1.3336,\"z\":-55.1488},\"rot\":{\"x\":0.0208,\"y\":270.0051,\"z\":0.9269}},\"133340\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2776,\"z\":71.4496},\"rot\":{\"x\":0.0208,\"y\":270.0128,\"z\":0.0168}},\"1483d9\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2849,\"z\":92.1617},\"rot\":{\"x\":0.0208,\"y\":269.9772,\"z\":0.0168}},\"166196\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2771,\"z\":64.0133},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"16c15b\":{\"lock\":false,\"pos\":{\"x\":-7.879,\"y\":1.2629,\"z\":70.9133},\"rot\":{\"x\":0.0208,\"y\":270.0198,\"z\":0.0168}},\"1a7b02\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2798,\"z\":77.8253},\"rot\":{\"x\":0.0208,\"y\":270.0033,\"z\":0.0168}},\"1bd191\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2779,\"z\":80.1133},\"rot\":{\"x\":0.0208,\"y\":270.0249,\"z\":0.0168}},\"1be073\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.3032,\"z\":75.5133},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1be35a\":{\"lock\":false,\"pos\":{\"x\":-16.6402,\"y\":1.3086,\"z\":-84.8182},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":359.9792}},\"1c6b3a\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2829,\"z\":76.0596},\"rot\":{\"x\":0.0208,\"y\":269.9926,\"z\":0.0168}},\"1c87fe\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2816,\"z\":85.2496},\"rot\":{\"x\":0.0208,\"y\":270.0196,\"z\":0.0168}},\"202a96\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2829,\"z\":85.2616},\"rot\":{\"x\":0.0208,\"y\":269.9774,\"z\":0.0168}},\"21ced3\":{\"lock\":false,\"pos\":{\"x\":-19.3034,\"y\":1.3168,\"z\":-53.4359},\"rot\":{\"x\":0.0209,\"y\":270.0017,\"z\":0.0163}},\"2450c5\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2802,\"z\":66.8594},\"rot\":{\"x\":0.0208,\"y\":270.0025,\"z\":0.0168}},\"24581f\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2758,\"z\":64.0253},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"273674\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3087,\"z\":-76.946},\"rot\":{\"x\":0.0208,\"y\":270.0039,\"z\":0.0168}},\"27aba8\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2785,\"z\":73.2253},\"rot\":{\"x\":0.0208,\"y\":270.0192,\"z\":0.0168}},\"27ba20\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2796,\"z\":78.3496},\"rot\":{\"x\":0.0208,\"y\":269.9618,\"z\":0.0168}},\"27ed55\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3178,\"z\":-53.3904},\"rot\":{\"x\":0.0168,\"y\":180.0039,\"z\":359.9792}},\"2848ab\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2842,\"z\":89.8616},\"rot\":{\"x\":0.0208,\"y\":269.9774,\"z\":0.0168}},\"2872fc\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2782,\"z\":64.5743},\"rot\":{\"x\":0.0208,\"y\":270.0121,\"z\":0.0168}},\"28e0b4\":{\"lock\":false,\"pos\":{\"x\":5.6424,\"y\":1.2809,\"z\":69.1595},\"rot\":{\"x\":0.0208,\"y\":269.978,\"z\":0.0168}},\"2a2c03\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2777,\"z\":66.3133},\"rot\":{\"x\":0.0208,\"y\":270.0127,\"z\":0.0168}},\"2a9a02\":{\"lock\":false,\"pos\":{\"x\":10.8335,\"y\":1.3194,\"z\":70.1049},\"rot\":{\"x\":0.0208,\"y\":269.9723,\"z\":0.0168}},\"2b5584\":{\"lock\":false,\"pos\":{\"x\":25.9535,\"y\":1.2989,\"z\":94.3343},\"rot\":{\"x\":0.0208,\"y\":269.9986,\"z\":0.0168}},\"2cf882\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2798,\"z\":73.2133},\"rot\":{\"x\":0.0208,\"y\":270.0112,\"z\":0.0168}},\"2d8ecc\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2796,\"z\":64.5596},\"rot\":{\"x\":0.0208,\"y\":269.9966,\"z\":0.0168}},\"2fecde\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3064,\"z\":-84.8185},\"rot\":{\"x\":0.0208,\"y\":270.0159,\"z\":0.0168}},\"30c749\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2789,\"z\":71.4616},\"rot\":{\"x\":0.0208,\"y\":269.9828,\"z\":0.0168}},\"31c14d\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2812,\"z\":82.4253},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"320094\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2776,\"z\":76.0496},\"rot\":{\"x\":0.0208,\"y\":270.0482,\"z\":0.0168}},\"3450cc\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2952,\"z\":94.5358},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"345d3c\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2816,\"z\":71.4596},\"rot\":{\"x\":0.0208,\"y\":269.9965,\"z\":0.0168}},\"363a78\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2789,\"z\":76.0496},\"rot\":{\"x\":0.0208,\"y\":270.0044,\"z\":0.0168}},\"36dbe9\":{\"lock\":false,\"pos\":{\"x\":-12.6031,\"y\":1.2803,\"z\":89.8237},\"rot\":{\"x\":0.0208,\"y\":269.9794,\"z\":0.0168}},\"3b3d81\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2932,\"z\":87.6358},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"3c12da\":{\"lock\":false,\"pos\":{\"x\":12.7277,\"y\":1.2928,\"z\":89.9201},\"rot\":{\"x\":0.0208,\"y\":269.9804,\"z\":0.0168}},\"3d079d\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2809,\"z\":78.3616},\"rot\":{\"x\":0.0208,\"y\":269.9798,\"z\":0.0168}},\"3e5de2\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2802,\"z\":71.4743},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"3ff589\":{\"lock\":false,\"pos\":{\"x\":-5.429,\"y\":1.2742,\"z\":59.9495},\"rot\":{\"x\":0.0208,\"y\":270.0281,\"z\":0.0168}},\"416008\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2832,\"z\":89.3253},\"rot\":{\"x\":0.0208,\"y\":270.0187,\"z\":0.0168}},\"4402a1\":{\"lock\":false,\"pos\":{\"x\":-22.6179,\"y\":1.3461,\"z\":-53.4373},\"rot\":{\"x\":1.1625,\"y\":269.9696,\"z\":0.0168}},\"47bdc1\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2743,\"z\":64.5497},\"rot\":{\"x\":0.0208,\"y\":270.0215,\"z\":0.0168}},\"47ddb0\":{\"lock\":false,\"pos\":{\"x\":22.669,\"y\":1.295,\"z\":85.135},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"488fce\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2783,\"z\":78.3496},\"rot\":{\"x\":0.0208,\"y\":270.0379,\"z\":0.0168}},\"4c56c4\":{\"lock\":false,\"pos\":{\"x\":25.9535,\"y\":1.2962,\"z\":85.1343},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"519e24\":{\"lock\":false,\"pos\":{\"x\":1.7638,\"y\":1.2869,\"z\":94.475},\"rot\":{\"x\":0.0208,\"y\":270.0354,\"z\":0.0168}},\"55769f\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2795,\"z\":73.7616},\"rot\":{\"x\":0.0208,\"y\":269.9561,\"z\":0.0168}},\"58bf2c\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2823,\"z\":87.5496},\"rot\":{\"x\":0.0208,\"y\":269.9702,\"z\":0.0168}},\"592017\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2802,\"z\":76.0616},\"rot\":{\"x\":0.0208,\"y\":269.972,\"z\":0.0168}},\"5925a5\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2782,\"z\":59.9594},\"rot\":{\"x\":0.0208,\"y\":269.9965,\"z\":0.0168}},\"595894\":{\"lock\":false,\"pos\":{\"x\":-12.6025,\"y\":1.2817,\"z\":94.4237},\"rot\":{\"x\":0.0208,\"y\":269.99,\"z\":0.0168}},\"599b2e\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2836,\"z\":78.3596},\"rot\":{\"x\":0.0208,\"y\":269.9924,\"z\":0.0168}},\"5a02fe\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2825,\"z\":87.0253},\"rot\":{\"x\":0.0208,\"y\":270.0186,\"z\":0.0168}},\"5a418b\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2752,\"z\":70.9133},\"rot\":{\"x\":0.0168,\"y\":179.9918,\"z\":359.9792}},\"5a4b91\":{\"lock\":false,\"pos\":{\"x\":-12.603,\"y\":1.279,\"z\":85.2172},\"rot\":{\"x\":0.0208,\"y\":269.9775,\"z\":0.0168}},\"5a7432\":{\"lock\":false,\"pos\":{\"x\":-16.6403,\"y\":1.3132,\"z\":-69.0603},\"rot\":{\"x\":0.0168,\"y\":179.9955,\"z\":359.9792}},\"5c2d70\":{\"lock\":false,\"pos\":{\"x\":-12.603,\"y\":1.2797,\"z\":87.5237},\"rot\":{\"x\":0.0208,\"y\":269.9663,\"z\":0.0168}},\"5d6157\":{\"lock\":false,\"pos\":{\"x\":12.4059,\"y\":1.2933,\"z\":92.1521},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"5df58d\":{\"lock\":false,\"pos\":{\"x\":-16.6396,\"y\":1.3109,\"z\":-76.9456},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":359.9792}},\"5ff3e1\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2786,\"z\":82.4133},\"rot\":{\"x\":0.0208,\"y\":270.0186,\"z\":0.0168}},\"60af01\":{\"lock\":false,\"pos\":{\"x\":-16.6401,\"y\":1.3155,\"z\":-61.231},\"rot\":{\"x\":0.0168,\"y\":179.9924,\"z\":359.9792}},\"62d7b6\":{\"lock\":false,\"pos\":{\"x\":22.669,\"y\":1.2964,\"z\":89.735},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"65091e\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2829,\"z\":89.8496},\"rot\":{\"x\":0.0208,\"y\":270.0009,\"z\":0.0168}},\"6793a3\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.2796,\"z\":82.9496},\"rot\":{\"x\":0.0208,\"y\":270.0181,\"z\":0.0168}},\"67ffbf\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.3119,\"z\":-61.241},\"rot\":{\"x\":0.0208,\"y\":269.9922,\"z\":0.0168}},\"69aef7\":{\"lock\":false,\"pos\":{\"x\":-19.2507,\"y\":1.3294,\"z\":-86.424},\"rot\":{\"x\":0.159,\"y\":270.0175,\"z\":0.9902}},\"6cd869\":{\"lock\":false,\"pos\":{\"x\":-8.9931,\"y\":1.2749,\"z\":66.8824},\"rot\":{\"x\":0.0208,\"y\":269.9902,\"z\":0.0168}},\"71abe6\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2803,\"z\":80.6496},\"rot\":{\"x\":0.0208,\"y\":269.9639,\"z\":0.0168}},\"729701\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2822,\"z\":82.9616},\"rot\":{\"x\":0.0208,\"y\":269.9788,\"z\":0.0168}},\"74493a\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2852,\"z\":91.6133},\"rot\":{\"x\":0.0208,\"y\":270.019,\"z\":0.0168}},\"74658f\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2813,\"z\":91.6133},\"rot\":{\"x\":0.0208,\"y\":270.0141,\"z\":0.0168}},\"769e65\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2809,\"z\":82.9496},\"rot\":{\"x\":0.0208,\"y\":270.0154,\"z\":0.0168}},\"7970d2\":{\"lock\":false,\"pos\":{\"x\":-5.4321,\"y\":1.2749,\"z\":62.2497},\"rot\":{\"x\":0.0208,\"y\":270.0382,\"z\":0.0168}},\"7a29a7\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2811,\"z\":77.8133},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"7ce81c\":{\"lock\":false,\"pos\":{\"x\":19.4901,\"y\":1.2966,\"z\":94.3494},\"rot\":{\"x\":0.0208,\"y\":269.9988,\"z\":0.0168}},\"7cf799\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2843,\"z\":80.6596},\"rot\":{\"x\":0.0208,\"y\":269.9926,\"z\":0.0168}},\"7cf99b\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2806,\"z\":89.3133},\"rot\":{\"x\":0.0208,\"y\":270.0039,\"z\":0.0168}},\"7d3855\":{\"lock\":false,\"pos\":{\"x\":5.6428,\"y\":1.2876,\"z\":92.1596},\"rot\":{\"x\":0.0208,\"y\":270.0381,\"z\":0.0168}},\"7d4931\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2795,\"z\":69.1743},\"rot\":{\"x\":0.0208,\"y\":270.0142,\"z\":0.0168}},\"805888\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.3097,\"z\":-69.0606},\"rot\":{\"x\":0.0208,\"y\":270.0825,\"z\":0.0168}},\"8249b7\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2918,\"z\":83.0358},\"rot\":{\"x\":0.0208,\"y\":269.9907,\"z\":0.0168}},\"830efe\":{\"lock\":false,\"pos\":{\"x\":-19.3021,\"y\":1.3145,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":269.8826,\"z\":0.0167}},\"85cbad\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2862,\"z\":92.1743},\"rot\":{\"x\":0.0208,\"y\":270.0354,\"z\":0.0168}},\"88c948\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2782,\"z\":69.1616},\"rot\":{\"x\":0.0208,\"y\":269.9563,\"z\":0.0168}},\"8a2863\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.2817,\"z\":89.8496},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"8ab0aa\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2809,\"z\":73.7744},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"8adb9e\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2845,\"z\":89.3133},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"8bc00c\":{\"lock\":false,\"pos\":{\"x\":12.7277,\"y\":1.2915,\"z\":85.3209},\"rot\":{\"x\":0.0208,\"y\":269.9714,\"z\":0.0168}},\"8cd646\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2938,\"z\":89.9358},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"8df09a\":{\"lock\":false,\"pos\":{\"x\":-19.3032,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0209,\"y\":269.8336,\"z\":0.0167}},\"8ec9e8\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.3142,\"z\":-53.4369},\"rot\":{\"x\":0.0208,\"y\":270.0057,\"z\":0.0168}},\"90adc7\":{\"lock\":false,\"pos\":{\"x\":-8.9868,\"y\":1.2736,\"z\":62.2497},\"rot\":{\"x\":0.0208,\"y\":269.9756,\"z\":0.0168}},\"9284f6\":{\"lock\":false,\"pos\":{\"x\":12.7274,\"y\":1.2941,\"z\":94.5185},\"rot\":{\"x\":0.0208,\"y\":269.9738,\"z\":0.0168}},\"92a8c8\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.281,\"z\":87.5496},\"rot\":{\"x\":0.0208,\"y\":269.9668,\"z\":0.0168}},\"9663f1\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.287,\"z\":89.8596},\"rot\":{\"x\":0.0208,\"y\":269.9928,\"z\":0.0168}},\"96fb56\":{\"lock\":false,\"pos\":{\"x\":-19.3331,\"y\":1.3285,\"z\":-78.5001},\"rot\":{\"x\":0.0188,\"y\":270.002,\"z\":1.0175}},\"98d59a\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2849,\"z\":87.5744},\"rot\":{\"x\":0.0208,\"y\":270.0286,\"z\":0.0168}},\"99751d\":{\"lock\":false,\"pos\":{\"x\":19.4901,\"y\":1.2952,\"z\":89.7494},\"rot\":{\"x\":0.0208,\"y\":269.999,\"z\":0.0168}},\"9d7db7\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2823,\"z\":73.7596},\"rot\":{\"x\":0.0208,\"y\":269.9927,\"z\":0.0168}},\"a03156\":{\"lock\":false,\"pos\":{\"x\":19.5868,\"y\":1.2508,\"z\":69.6144},\"rot\":{\"x\":359.9792,\"y\":89.9929,\"z\":359.9832}},\"a311eb\":{\"lock\":false,\"pos\":{\"x\":12.4068,\"y\":1.294,\"z\":94.5291},\"rot\":{\"x\":0.0208,\"y\":270.0088,\"z\":0.0168}},\"a4ca98\":{\"lock\":false,\"pos\":{\"x\":5.6429,\"y\":1.2883,\"z\":94.4596},\"rot\":{\"x\":0.0208,\"y\":269.9978,\"z\":0.0168}},\"a4d6ce\":{\"lock\":false,\"pos\":{\"x\":12.7274,\"y\":1.2921,\"z\":87.6185},\"rot\":{\"x\":0.0208,\"y\":269.9931,\"z\":0.0168}},\"a50220\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.2803,\"z\":85.2496},\"rot\":{\"x\":0.0208,\"y\":270.0254,\"z\":0.0168}},\"aa4203\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2856,\"z\":85.2596},\"rot\":{\"x\":0.0208,\"y\":269.9926,\"z\":0.0168}},\"ab19ea\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2825,\"z\":82.4133},\"rot\":{\"x\":0.0208,\"y\":270.0214,\"z\":0.0168}},\"acf78b\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2898,\"z\":76.1357},\"rot\":{\"x\":0.0208,\"y\":270.0255,\"z\":0.0168}},\"af287c\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2819,\"z\":84.7253},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"b1ab4a\":{\"lock\":false,\"pos\":{\"x\":25.9535,\"y\":1.2975,\"z\":89.7342},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"b3612e\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2804,\"z\":75.5133},\"rot\":{\"x\":0.0208,\"y\":270.0006,\"z\":0.0168}},\"bb2d8c\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2816,\"z\":80.6616},\"rot\":{\"x\":0.0208,\"y\":269.9734,\"z\":0.0168}},\"bbd9b9\":{\"lock\":false,\"pos\":{\"x\":19.4901,\"y\":1.2939,\"z\":85.1494},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"bea40c\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2799,\"z\":87.0133},\"rot\":{\"x\":0.0208,\"y\":270.0187,\"z\":0.0168}},\"bed1c4\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2765,\"z\":66.3253},\"rot\":{\"x\":0.0208,\"y\":270.0004,\"z\":0.0168}},\"bf1297\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.311,\"z\":-69.0756},\"rot\":{\"x\":0.0208,\"y\":270.0037,\"z\":0.0168}},\"c0e8e4\":{\"lock\":false,\"pos\":{\"x\":12.7274,\"y\":1.2935,\"z\":92.2185},\"rot\":{\"x\":0.0208,\"y\":269.9789,\"z\":0.0168}},\"c25061\":{\"lock\":false,\"pos\":{\"x\":9.221,\"y\":1.2896,\"z\":94.5498},\"rot\":{\"x\":0.0208,\"y\":269.985,\"z\":0.0168}},\"c48fc3\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.279,\"z\":80.6496},\"rot\":{\"x\":0.0208,\"y\":270.0384,\"z\":0.0168}},\"c53e8d\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2782,\"z\":73.7496},\"rot\":{\"x\":0.0208,\"y\":269.9773,\"z\":0.0168}},\"c6ef37\":{\"lock\":false,\"pos\":{\"x\":25.9413,\"y\":1.2982,\"z\":92.0275},\"rot\":{\"x\":0.0208,\"y\":270.0007,\"z\":0.0168}},\"c821e9\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.285,\"z\":82.9596},\"rot\":{\"x\":0.0208,\"y\":270.0027,\"z\":0.0168}},\"c9c916\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2788,\"z\":66.8742},\"rot\":{\"x\":0.0208,\"y\":270.0125,\"z\":0.0168}},\"ca55a3\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2863,\"z\":87.5596},\"rot\":{\"x\":0.0208,\"y\":270.0103,\"z\":0.0168}},\"cad5d5\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2831,\"z\":84.7133},\"rot\":{\"x\":0.0208,\"y\":270.0192,\"z\":0.0168}},\"cc2723\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2784,\"z\":68.6133},\"rot\":{\"x\":0.0208,\"y\":270.0134,\"z\":0.0168}},\"ce6e77\":{\"lock\":false,\"pos\":{\"x\":22.669,\"y\":1.2957,\"z\":87.435},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"cf1b06\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.3073,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":270.0413,\"z\":0.0168}},\"d40f7c\":{\"lock\":false,\"pos\":{\"x\":22.669,\"y\":1.297,\"z\":92.035},\"rot\":{\"x\":0.0208,\"y\":269.9996,\"z\":0.0168}},\"d490f4\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2856,\"z\":94.4616},\"rot\":{\"x\":0.0208,\"y\":269.9772,\"z\":0.0168}},\"d49971\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2749,\"z\":66.8496},\"rot\":{\"x\":0.0208,\"y\":270.0309,\"z\":0.0168}},\"d8c089\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2829,\"z\":80.6744},\"rot\":{\"x\":0.0208,\"y\":270.0127,\"z\":0.0168}},\"d90685\":{\"lock\":false,\"pos\":{\"x\":-5.4322,\"y\":1.2836,\"z\":92.1496},\"rot\":{\"x\":0.0208,\"y\":270.0153,\"z\":0.0168}},\"d921bc\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2945,\"z\":92.2358},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"dabd8d\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.2823,\"z\":92.1496},\"rot\":{\"x\":0.0208,\"y\":270.0178,\"z\":0.0168}},\"db5369\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2842,\"z\":85.2744},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"dba2a6\":{\"lock\":false,\"pos\":{\"x\":-5.4323,\"y\":1.2762,\"z\":66.8496},\"rot\":{\"x\":0.0208,\"y\":269.9579,\"z\":0.0168}},\"dda3dc\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.305,\"z\":-84.818},\"rot\":{\"x\":0.0208,\"y\":270.0212,\"z\":0.0168}},\"ddcdcc\":{\"lock\":false,\"pos\":{\"x\":25.9559,\"y\":1.2969,\"z\":87.4343},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"dedfbb\":{\"lock\":false,\"pos\":{\"x\":22.669,\"y\":1.2977,\"z\":94.335},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"df828a\":{\"lock\":false,\"pos\":{\"x\":15.565,\"y\":1.2905,\"z\":78.4206},\"rot\":{\"x\":0.0208,\"y\":269.9646,\"z\":0.0168}},\"e10b00\":{\"lock\":false,\"pos\":{\"x\":-0.7817,\"y\":1.2791,\"z\":70.9133},\"rot\":{\"x\":0.0208,\"y\":270.0049,\"z\":0.0168}},\"e1f933\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2775,\"z\":66.8616},\"rot\":{\"x\":0.0208,\"y\":269.9755,\"z\":0.0168}},\"e4f0d2\":{\"lock\":false,\"pos\":{\"x\":15.5652,\"y\":1.2911,\"z\":80.7358},\"rot\":{\"x\":0.0208,\"y\":269.9763,\"z\":0.0168}},\"e5ebfc\":{\"lock\":false,\"pos\":{\"x\":-5.4323,\"y\":1.2769,\"z\":69.1496},\"rot\":{\"x\":0.0208,\"y\":270.0253,\"z\":0.0168}},\"e94aa3\":{\"lock\":false,\"pos\":{\"x\":9.1791,\"y\":1.2889,\"z\":92.162},\"rot\":{\"x\":0.0208,\"y\":269.9738,\"z\":0.0168}},\"e9746a\":{\"lock\":false,\"pos\":{\"x\":-8.9914,\"y\":1.283,\"z\":94.459},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"e9d7dc\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2762,\"z\":62.2617},\"rot\":{\"x\":0.0208,\"y\":269.9798,\"z\":0.0168}},\"ee3b9e\":{\"lock\":false,\"pos\":{\"x\":-4.3259,\"y\":1.2839,\"z\":91.6253},\"rot\":{\"x\":0.0208,\"y\":270.0003,\"z\":0.0168}},\"f20025\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2856,\"z\":89.8744},\"rot\":{\"x\":0.0208,\"y\":270.0287,\"z\":0.0168}},\"f424b5\":{\"lock\":false,\"pos\":{\"x\":-19.2956,\"y\":1.3099,\"z\":-76.9414},\"rot\":{\"x\":0.0208,\"y\":269.9008,\"z\":0.0167}},\"f52130\":{\"lock\":false,\"pos\":{\"x\":19.4901,\"y\":1.2945,\"z\":87.4494},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"f5d683\":{\"lock\":false,\"pos\":{\"x\":-8.9869,\"y\":1.2769,\"z\":73.7496},\"rot\":{\"x\":0.0208,\"y\":270.0284,\"z\":0.0168}},\"f5dde8\":{\"lock\":false,\"pos\":{\"x\":-12.6025,\"y\":1.281,\"z\":92.1235},\"rot\":{\"x\":0.0208,\"y\":269.9702,\"z\":0.0168}},\"f67bb7\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2768,\"z\":64.5617},\"rot\":{\"x\":0.0208,\"y\":269.975,\"z\":0.0168}},\"f81d7c\":{\"lock\":false,\"pos\":{\"x\":-8.987,\"y\":1.2756,\"z\":69.1496},\"rot\":{\"x\":0.0208,\"y\":270.034,\"z\":0.0168}},\"f91daf\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2836,\"z\":82.9744},\"rot\":{\"x\":0.0208,\"y\":270.0137,\"z\":0.0168}},\"facdd4\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2815,\"z\":76.0744},\"rot\":{\"x\":0.0208,\"y\":270.0117,\"z\":0.0168}},\"fc5916\":{\"lock\":false,\"pos\":{\"x\":5.6423,\"y\":1.2789,\"z\":62.2596},\"rot\":{\"x\":0.0208,\"y\":269.9967,\"z\":0.0168}},\"fd5d1b\":{\"lock\":false,\"pos\":{\"x\":-5.4323,\"y\":1.2755,\"z\":64.5497},\"rot\":{\"x\":0.0208,\"y\":270.0133,\"z\":0.0168}},\"fd989b\":{\"lock\":false,\"pos\":{\"x\":1.7635,\"y\":1.2822,\"z\":78.3744},\"rot\":{\"x\":0.0208,\"y\":270.0119,\"z\":0.0168}},\"fe6cd0\":{\"lock\":false,\"pos\":{\"x\":-11.4337,\"y\":1.2793,\"z\":84.7133},\"rot\":{\"x\":0.0208,\"y\":270.0186,\"z\":0.0168}},\"feac86\":{\"lock\":false,\"pos\":{\"x\":-1.8791,\"y\":1.2836,\"z\":87.5616},\"rot\":{\"x\":0.0208,\"y\":269.9852,\"z\":0.0168}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "03bf91",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.987,
|
|
"posY": 1.27627242,
|
|
"posZ": 71.4496,
|
|
"rotX": 0.0208084732,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01677113,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Test of Mettle (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 707,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "040cf6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.4901,
|
|
"posY": 1.295877,
|
|
"posZ": 92.0494,
|
|
"rotX": 0.020808775,
|
|
"rotY": 269.9989,
|
|
"rotZ": 0.0167707559,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "All-Seeing Eye (3)",
|
|
"Description": "Descrying Threats",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266401,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0441cb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.9837,
|
|
"posY": 1.27290726,
|
|
"posZ": 59.9495,
|
|
"rotX": 0.020814376,
|
|
"rotY": 269.9796,
|
|
"rotZ": 0.01676377,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Descry the Universe (4)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 713,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0a6180",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.2842958,
|
|
"posZ": 94.4496,
|
|
"rotX": 0.020804096,
|
|
"rotY": 270.01532,
|
|
"rotZ": 0.0167767387,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abscond",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 440,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0cb1df",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.5652,
|
|
"posY": 1.28912044,
|
|
"posZ": 73.8366,
|
|
"rotX": 0.0208029915,
|
|
"rotY": 270.0189,
|
|
"rotZ": 0.0167778954,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eschatological Rituals (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 739,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0cbe7d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.3011,
|
|
"posY": 1.31219959,
|
|
"posZ": -69.0606,
|
|
"rotX": 0.020639604,
|
|
"rotY": 270.5735,
|
|
"rotZ": 0.0169784967,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Valhalla Combo",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 206,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0fd66c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.5652,
|
|
"posY": 1.29248643,
|
|
"posZ": 85.3358,
|
|
"rotX": 0.0208086167,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01677122,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sacrilegious Intervention (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 734,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0fd992",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.3151,
|
|
"posY": 1.33362544,
|
|
"posZ": -55.1488,
|
|
"rotX": 0.0208210312,
|
|
"rotY": 270.0052,
|
|
"rotZ": 0.9262249,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Kokorowatari (Replica) (3)",
|
|
"Description": "Oddity Slayer",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 201,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "133340",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.27756333,
|
|
"posZ": 71.4496,
|
|
"rotX": 0.0208048467,
|
|
"rotY": 270.0128,
|
|
"rotZ": 0.016775975,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sift the Veil (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 448,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1483d9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909949,
|
|
"posY": 1.28491652,
|
|
"posZ": 92.1617,
|
|
"rotX": 0.020815026,
|
|
"rotY": 269.977173,
|
|
"rotZ": 0.01676302,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Colt SAA",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 427,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1be35a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -16.6402,
|
|
"posY": 1.30855346,
|
|
"posZ": -84.8182,
|
|
"rotX": 0.016771106,
|
|
"rotY": 180.0001,
|
|
"rotZ": 359.9792,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hitagi Senjogahara",
|
|
"Description": "The Graduate",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 104,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"1": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571791243/77ECE3240617CA8E69BFA01768690F931A6BB8B4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571791514/F5DE3E2DB01C1C33677BA73FEA92A394D928AC15/",
|
|
"NumWidth": 2,
|
|
"NumHeight": 3,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1c6b3a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.28293478,
|
|
"posZ": 76.0596,
|
|
"rotX": 0.0208106376,
|
|
"rotY": 269.992645,
|
|
"rotZ": 0.0167684555,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Yumewatari (2)",
|
|
"Description": "\"Dream Crosser\"",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 406,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1c87fe",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.28160274,
|
|
"posZ": 85.2496,
|
|
"rotX": 0.0208027754,
|
|
"rotY": 270.0196,
|
|
"rotZ": 0.01677829,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Inexplicable Sign",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 716,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "202a96",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909961,
|
|
"posY": 1.28289676,
|
|
"posZ": 85.2616,
|
|
"rotX": 0.02081505,
|
|
"rotY": 269.9774,
|
|
"rotZ": 0.0167629421,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fox Mask",
|
|
"Description": "Gift from the Messenger",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 429,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "21ced3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.3034,
|
|
"posY": 1.3167659,
|
|
"posZ": -53.4359,
|
|
"rotX": 0.020870259,
|
|
"rotY": 270.001831,
|
|
"rotZ": 0.0163471047,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Kokorowatari (Replica)",
|
|
"Description": "Oddity Slayer",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2450c5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.28024173,
|
|
"posZ": 66.8594,
|
|
"rotX": 0.02080767,
|
|
"rotY": 270.0025,
|
|
"rotZ": 0.0167721752,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Double Team (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 722,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "273674",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -22.6157,
|
|
"posY": 1.30868769,
|
|
"posZ": -76.946,
|
|
"rotX": 0.020807432,
|
|
"rotY": 270.0039,
|
|
"rotZ": 0.016772544,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Traverse the Veil",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 241,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "27ba20",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.2795831,
|
|
"posZ": 78.3496,
|
|
"rotX": 0.0208196919,
|
|
"rotY": 269.9618,
|
|
"rotZ": 0.01675713,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Devoted (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 445,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "27ed55",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -16.6401,
|
|
"posY": 1.31775284,
|
|
"posZ": -53.3904,
|
|
"rotX": 0.0167726744,
|
|
"rotY": 180.003845,
|
|
"rotZ": 359.9792,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Shinobu Oshino",
|
|
"Description": "The Former Vampire",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 100,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"1": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571791243/77ECE3240617CA8E69BFA01768690F931A6BB8B4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571791514/F5DE3E2DB01C1C33677BA73FEA92A394D928AC15/",
|
|
"NumWidth": 2,
|
|
"NumHeight": 3,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2848ab",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909949,
|
|
"posY": 1.28424323,
|
|
"posZ": 89.8616,
|
|
"rotX": 0.0208150912,
|
|
"rotY": 269.9774,
|
|
"rotZ": 0.0167629682,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cop-out",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 430,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2872fc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76350009,
|
|
"posY": 1.27816415,
|
|
"posZ": 64.5743,
|
|
"rotX": 0.0208049547,
|
|
"rotY": 270.0121,
|
|
"rotZ": 0.0167756118,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Process of Elimination (5)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 426,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "28e0b4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6424,
|
|
"posY": 1.280915,
|
|
"posZ": 69.1595,
|
|
"rotX": 0.0208149739,
|
|
"rotY": 269.978027,
|
|
"rotZ": 0.0167632,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Katana (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 408,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2a9a02",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": 10.833499,
|
|
"posY": 1.31939471,
|
|
"posZ": 70.1049,
|
|
"rotX": 0.0208144672,
|
|
"rotY": 269.972443,
|
|
"rotZ": 0.0167620834,
|
|
"scaleX": 0.5000004,
|
|
"scaleY": 0.5000004,
|
|
"scaleZ": 0.5000004
|
|
},
|
|
"Nickname": "Kaimonogatari: Player card token spawner",
|
|
"Description": "When using these player cards, include this data helper!",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomMesh": {
|
|
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/",
|
|
"NormalURL": "",
|
|
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
|
|
"Convex": true,
|
|
"MaterialIndex": 2,
|
|
"TypeIndex": 0,
|
|
"CustomShader": {
|
|
"SpecularColor": {
|
|
"r": 0.7222887,
|
|
"g": 0.507659256,
|
|
"b": 0.339915335
|
|
},
|
|
"SpecularIntensity": 0.4,
|
|
"SpecularSharpness": 7.0,
|
|
"FresnelStrength": 0.0
|
|
},
|
|
"CastShadows": true
|
|
},
|
|
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\n\t--[[\r\n\tPlayer cards with token counts and types\r\n\t]]\n\r\r\nPLAYER_CARD_DATA_JSON = [[\r\n\t{\n\t \"Pay In Blood (1)\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\n },\n\t \"Iron-Blooded (3)\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\r\n\t },\n\t \"All-Seeing Eye (3):Descrying Threats\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 7\r\n\t },\n \"Winchester Model 1887 (5)\": {\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 4\n },\n \"Railgun\": {\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 1\n },\n \"Inveigle\": {\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 4\n },\n\t \"Insatiable Hunger (2)\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 4\r\n\t },\n \"Yumewatari (2)\": {\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 4\n },\r\n\t \"Musket Rifle (4)\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 1\r\n\t },\n \"Book of Warding\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\r\n\t },\r\n\t \"Round Up (2)\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\r\n\t },\n\t \"Single-Lens Reflex Camera (1)\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\r\n\t },\n\t \"Neuroethology (3)\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\r\n\t },\n\t \"Mathematical Proof (4):Associativity\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\n },\n\t \"Mathematical Proof (4):Recursion\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\n },\n\t \"Colt SAA\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 6\n }, \r\t\t\n\t \"Abscond\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 2\n },\t\t\n\t \"Abscond (3)\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 2\n },\n\t \"Dispel Magic (2)\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\n },\n\t \"Dispel Magic (5)\": {\r\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\n },\n \"Strange Spraycan\": {\n\t\t \"tokenType\": \"resource\",\r\n\t\t \"tokenCount\": 3\n },\n \"Another World\": {\n\t\t \"tokenType\": \"clue\",\r\n\t\t \"tokenCount\": 1\n } \n}\r\n\t]]\r\n\t\r\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\n\r\nfunction onload(save_state)\r\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()})\nend\r\r\n",
|
|
"LuaScriptState": "[]",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2b5584",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.9535,
|
|
"posY": 1.29889321,
|
|
"posZ": 94.3343,
|
|
"rotX": 0.0208090357,
|
|
"rotY": 269.9986,
|
|
"rotZ": 0.01677076,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood Offering (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266415,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2d8ecc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.27956855,
|
|
"posZ": 64.5596,
|
|
"rotX": 0.0208095256,
|
|
"rotY": 269.996643,
|
|
"rotZ": 0.0167699512,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eviscerate (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 410,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2fecde",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -22.6169,
|
|
"posY": 1.30638278,
|
|
"posZ": -84.8185,
|
|
"rotX": 0.020803785,
|
|
"rotY": 270.0159,
|
|
"rotZ": 0.01677702,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Weightlessness",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 211,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "30c749",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909985,
|
|
"posY": 1.27885723,
|
|
"posZ": 71.4616,
|
|
"rotX": 0.0208136328,
|
|
"rotY": 269.9828,
|
|
"rotZ": 0.0167648587,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Quickdraw (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 720,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "320094",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.987,
|
|
"posY": 1.27761889,
|
|
"posZ": 76.0496,
|
|
"rotX": 0.0207946,
|
|
"rotY": 270.0482,
|
|
"rotZ": 0.0167886857,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Impostor Oddity (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 705,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3450cc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.5652,
|
|
"posY": 1.29517937,
|
|
"posZ": 94.5358,
|
|
"rotX": 0.0208083671,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167712923,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Winchester Model 1887 (5)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 730,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "345d3c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.28158832,
|
|
"posZ": 71.4596,
|
|
"rotX": 0.0208096,
|
|
"rotY": 269.99646,
|
|
"rotZ": 0.01676984,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Black Gloves (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 409,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "363a78",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.2789098,
|
|
"posZ": 76.0496,
|
|
"rotX": 0.0208074525,
|
|
"rotY": 270.004425,
|
|
"rotZ": 0.0167727247,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Magician's Hat (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 447,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "36dbe9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -12.6031,
|
|
"posY": 1.28033745,
|
|
"posZ": 89.8237,
|
|
"rotX": 0.020814525,
|
|
"rotY": 269.9794,
|
|
"rotZ": 0.01676374,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sanctimonious",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 728,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3b3d81",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.5652,
|
|
"posY": 1.29315972,
|
|
"posZ": 87.6358,
|
|
"rotX": 0.0208084267,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.016771175,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sticking Close",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 733,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3d079d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909961,
|
|
"posY": 1.280877,
|
|
"posZ": 78.3616,
|
|
"rotX": 0.0208144225,
|
|
"rotY": 269.979858,
|
|
"rotZ": 0.0167637337,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Aplomb (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 433,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3e5de2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.7635,
|
|
"posY": 1.28018391,
|
|
"posZ": 71.4743,
|
|
"rotX": 0.0208087061,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167710464,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Post-Mortem Examination (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 425,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3ff589",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.429,
|
|
"posY": 1.27419829,
|
|
"posZ": 59.9495,
|
|
"rotX": 0.0208002869,
|
|
"rotY": 270.0281,
|
|
"rotZ": 0.01678123,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Offering from the Messenger",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 452,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4402a1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -22.6172314,
|
|
"posY": 1.31556833,
|
|
"posZ": -53.4373665,
|
|
"rotX": 0.0208165273,
|
|
"rotY": 269.973328,
|
|
"rotZ": 0.01676138,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Koyomi Araragi",
|
|
"Description": "Half-Vampire",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1645467400205936702/89262D4F3EFD0771A5E2F18CD0D18D3CE6A86612/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1645467400205937382/706B8F5C3EB97506FD009B07B64DA03FB2653BC0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "47bdc1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.987,
|
|
"posY": 1.27425265,
|
|
"posZ": 64.5497,
|
|
"rotX": 0.0208021291,
|
|
"rotY": 270.0215,
|
|
"rotZ": 0.0167790428,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hirofumi Yoshida (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 715,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "47ddb0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.669,
|
|
"posY": 1.29500759,
|
|
"posZ": 85.135,
|
|
"rotX": 0.0208086651,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0167711619,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deceive Reality (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266414,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "488fce",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.987,
|
|
"posY": 1.27829206,
|
|
"posZ": 78.3496,
|
|
"rotX": 0.0207973514,
|
|
"rotY": 270.0379,
|
|
"rotZ": 0.0167848263,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Transience (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 706,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4c56c4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.9535,
|
|
"posY": 1.29620016,
|
|
"posZ": 85.1343,
|
|
"rotX": 0.020808531,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.016771242,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fragmented Thoughts (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266419,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "519e24",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76380038,
|
|
"posY": 1.28691661,
|
|
"posZ": 94.475,
|
|
"rotX": 0.0207982268,
|
|
"rotY": 270.0354,
|
|
"rotZ": 0.0167840533,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Book of Warding",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 413,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "55769f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909961,
|
|
"posY": 1.27953053,
|
|
"posZ": 73.7616,
|
|
"rotX": 0.0208213255,
|
|
"rotY": 269.956146,
|
|
"rotZ": 0.0167551991,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Crown of Thorns (1)",
|
|
"Description": "Suffering is Divine",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 719,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "58bf2c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.282276,
|
|
"posZ": 87.5496,
|
|
"rotX": 0.0208171625,
|
|
"rotY": 269.9702,
|
|
"rotZ": 0.0167603716,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "A Myriad of Signs",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 443,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "592017",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909973,
|
|
"posY": 1.2802037,
|
|
"posZ": 76.0616,
|
|
"rotX": 0.0208167247,
|
|
"rotY": 269.972,
|
|
"rotZ": 0.0167609379,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Stakeout (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 431,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5925a5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.278222,
|
|
"posZ": 59.9594,
|
|
"rotX": 0.0208096188,
|
|
"rotY": 269.99646,
|
|
"rotZ": 0.0167698022,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bloodthirsty (5)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 412,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "595894",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -12.6025,
|
|
"posY": 1.28168416,
|
|
"posZ": 94.4237,
|
|
"rotX": 0.02081135,
|
|
"rotY": 269.99,
|
|
"rotZ": 0.0167675819,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Human Condition",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 726,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "599b2e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.283608,
|
|
"posZ": 78.3596,
|
|
"rotX": 0.0208106954,
|
|
"rotY": 269.9924,
|
|
"rotZ": 0.0167684052,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Conjure Weapon (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 407,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5a4b91",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -12.603,
|
|
"posY": 1.27898908,
|
|
"posZ": 85.2172,
|
|
"rotX": 0.0208151154,
|
|
"rotY": 269.9775,
|
|
"rotZ": 0.0167629588,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agoraphobia",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 742,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5a7432",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -16.6403,
|
|
"posY": 1.313166,
|
|
"posZ": -69.0603,
|
|
"rotX": 0.01676962,
|
|
"rotY": 179.995468,
|
|
"rotZ": 359.9792,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Suruga Kanbaru",
|
|
"Description": "The Underclassman",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 102,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"1": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571791243/77ECE3240617CA8E69BFA01768690F931A6BB8B4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571791514/F5DE3E2DB01C1C33677BA73FEA92A394D928AC15/",
|
|
"NumWidth": 2,
|
|
"NumHeight": 3,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5c2d70",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -12.603,
|
|
"posY": 1.27966428,
|
|
"posZ": 87.5237,
|
|
"rotX": 0.0208182987,
|
|
"rotY": 269.9663,
|
|
"rotZ": 0.0167587884,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Amorphous Terror",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 729,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5d6157",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.4059,
|
|
"posY": 1.29333425,
|
|
"posZ": 92.1521,
|
|
"rotX": 0.0208127778,
|
|
"rotY": 269.9875,
|
|
"rotZ": 0.0167669412,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Railgun (3)",
|
|
"Description": "DMR variant",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 741,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5df58d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -16.6396,
|
|
"posY": 1.31085813,
|
|
"posZ": -76.9456,
|
|
"rotX": 0.01677132,
|
|
"rotY": 180.0,
|
|
"rotZ": 359.9792,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Yotsugi Ononoki",
|
|
"Description": "The Living Doll",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 103,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"1": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571791243/77ECE3240617CA8E69BFA01768690F931A6BB8B4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571791514/F5DE3E2DB01C1C33677BA73FEA92A394D928AC15/",
|
|
"NumWidth": 2,
|
|
"NumHeight": 3,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "60af01",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -16.6401,
|
|
"posY": 1.31545782,
|
|
"posZ": -61.231,
|
|
"rotX": 0.0167687368,
|
|
"rotY": 179.992371,
|
|
"rotZ": 359.9792,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tsubasa Hanekawa",
|
|
"Description": "Possessed by a Cat Spirit",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 101,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"1": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571791243/77ECE3240617CA8E69BFA01768690F931A6BB8B4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571791514/F5DE3E2DB01C1C33677BA73FEA92A394D928AC15/",
|
|
"NumWidth": 2,
|
|
"NumHeight": 3,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "62d7b6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.669,
|
|
"posY": 1.296354,
|
|
"posZ": 89.735,
|
|
"rotX": 0.0208086111,
|
|
"rotY": 269.9995,
|
|
"rotZ": 0.0167710129,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sprinter (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266412,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "65091e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.28294933,
|
|
"posZ": 89.8496,
|
|
"rotX": 0.0208082832,
|
|
"rotY": 270.0009,
|
|
"rotZ": 0.01677144,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tadatsuru Teori",
|
|
"Description": "Dollmaster",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 442,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6793a3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.9869,
|
|
"posY": 1.27963865,
|
|
"posZ": 82.9496,
|
|
"rotX": 0.0208033975,
|
|
"rotY": 270.018127,
|
|
"rotZ": 0.0167777371,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ogi Oshino",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 701,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "67ffbf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -26.3001,
|
|
"posY": 1.31194663,
|
|
"posZ": -61.241,
|
|
"rotX": 0.02081076,
|
|
"rotY": 269.9922,
|
|
"rotZ": 0.016768381,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Kako",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 204,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "69aef7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.2507,
|
|
"posY": 1.32929587,
|
|
"posZ": -86.424,
|
|
"rotX": 0.158719972,
|
|
"rotY": 270.017456,
|
|
"rotZ": 0.9847116,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Limitless Stationery",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 212,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6cd869",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -8.9931,
|
|
"posY": 1.27493322,
|
|
"posZ": 66.8824,
|
|
"rotX": 0.0208114441,
|
|
"rotY": 269.9902,
|
|
"rotZ": 0.0167674981,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Claymore (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2665": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572215618/9D7DBA7913BE019A7BEDC8A1CFB85B883EA67574/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "71abe6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.28025639,
|
|
"posZ": 80.6496,
|
|
"rotX": 0.0208191,
|
|
"rotY": 269.963867,
|
|
"rotZ": 0.0167579018,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Intimidating Presence (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 444,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "729701",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909973,
|
|
"posY": 1.28222346,
|
|
"posZ": 82.9616,
|
|
"rotX": 0.02081471,
|
|
"rotY": 269.978821,
|
|
"rotZ": 0.0167634953,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Duplicitous (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 435,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "769e65",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.28092957,
|
|
"posZ": 82.9496,
|
|
"rotX": 0.0208040476,
|
|
"rotY": 270.0154,
|
|
"rotZ": 0.0167766381,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Holistic Treatment",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 717,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7970d2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4321,
|
|
"posY": 1.27487051,
|
|
"posZ": 62.2497,
|
|
"rotX": 0.020797383,
|
|
"rotY": 270.0382,
|
|
"rotZ": 0.0167850349,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dispel Magic (5)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 451,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7ce81c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.4901,
|
|
"posY": 1.29655027,
|
|
"posZ": 94.3494,
|
|
"rotX": 0.0208089855,
|
|
"rotY": 269.9988,
|
|
"rotZ": 0.0167706776,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Iron-Blooded (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7cf799",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.28428125,
|
|
"posZ": 80.6596,
|
|
"rotX": 0.02081073,
|
|
"rotY": 269.9926,
|
|
"rotZ": 0.0167685412,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Disciplined (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 405,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7d3855",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.64280033,
|
|
"posY": 1.2876476,
|
|
"posZ": 92.1596,
|
|
"rotX": 0.02079743,
|
|
"rotY": 270.0381,
|
|
"rotZ": 0.01678504,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Exsanguinate",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 401,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7d4931",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76350033,
|
|
"posY": 1.27951062,
|
|
"posZ": 69.1743,
|
|
"rotX": 0.0208044425,
|
|
"rotY": 270.0142,
|
|
"rotZ": 0.0167764053,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mathematical Proof (4)",
|
|
"Description": "Recursion",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 421,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "805888",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -26.3002,
|
|
"posY": 1.30965769,
|
|
"posZ": -69.0606,
|
|
"rotX": 0.0207842123,
|
|
"rotY": 270.0825,
|
|
"rotZ": 0.0168011636,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Rainy Devil",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 207,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8249b7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.5652,
|
|
"posY": 1.29181314,
|
|
"posZ": 83.0358,
|
|
"rotX": 0.02081132,
|
|
"rotY": 269.9907,
|
|
"rotZ": 0.0167677049,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Insatiable Hunger (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 735,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "830efe",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.3021,
|
|
"posY": 1.31449044,
|
|
"posZ": -61.2332,
|
|
"rotX": 0.0208428167,
|
|
"rotY": 269.8826,
|
|
"rotZ": 0.01672842,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Black Hanekawa",
|
|
"Description": "Sawarineko",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 203,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "85cbad",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76350021,
|
|
"posY": 1.28624308,
|
|
"posZ": 92.1743,
|
|
"rotX": 0.02079807,
|
|
"rotY": 270.0354,
|
|
"rotZ": 0.016783962,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Detective Notebook",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 414,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "88c948",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909973,
|
|
"posY": 1.278184,
|
|
"posZ": 69.1616,
|
|
"rotX": 0.020821264,
|
|
"rotY": 269.9563,
|
|
"rotZ": 0.0167553052,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Outmaneuver (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 436,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8a2863",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.9869,
|
|
"posY": 1.28165829,
|
|
"posZ": 89.8496,
|
|
"rotX": 0.0208085533,
|
|
"rotY": 269.9993,
|
|
"rotZ": 0.016771026,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Undeterred",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 702,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8ab0aa",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76349986,
|
|
"posY": 1.28085721,
|
|
"posZ": 73.7744,
|
|
"rotX": 0.0208086725,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.01677123,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paper Lantern (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 424,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8cd646",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.5652,
|
|
"posY": 1.2938329,
|
|
"posZ": 89.9358,
|
|
"rotX": 0.0208087917,
|
|
"rotY": 269.9993,
|
|
"rotZ": 0.0167710073,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Meditate (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 732,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8df09a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.3032,
|
|
"posY": 1.3075664,
|
|
"posZ": -84.8182,
|
|
"rotX": 0.0210459866,
|
|
"rotY": 269.833557,
|
|
"rotZ": 0.0154080335,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Limitless Stationery",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 213,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8ec9e8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -26.3,
|
|
"posY": 1.314231,
|
|
"posZ": -53.4369,
|
|
"rotX": 0.0208067223,
|
|
"rotY": 270.0057,
|
|
"rotZ": 0.0167732183,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Princess Beauty",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 202,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "90adc7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.9868,
|
|
"posY": 1.27357948,
|
|
"posZ": 62.2497,
|
|
"rotX": 0.0208157673,
|
|
"rotY": 269.9756,
|
|
"rotZ": 0.0167622976,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ogi Oshino (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 711,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "92a8c8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.9869,
|
|
"posY": 1.28098512,
|
|
"posZ": 87.5496,
|
|
"rotX": 0.0208181068,
|
|
"rotY": 269.9668,
|
|
"rotZ": 0.0167590715,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Comtemplation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 703,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9663f1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.642298,
|
|
"posY": 1.28697419,
|
|
"posZ": 89.8596,
|
|
"rotX": 0.0208106432,
|
|
"rotY": 269.992828,
|
|
"rotZ": 0.0167686734,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Brace for Impact",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 402,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "96fb56",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.3331,
|
|
"posY": 1.32848454,
|
|
"posZ": -78.5001,
|
|
"rotX": 0.020757746,
|
|
"rotY": 270.002075,
|
|
"rotZ": 1.01544571,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unlimited Rulebook",
|
|
"Description": "Secession Version",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 209,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "98d59a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76350033,
|
|
"posY": 1.28489661,
|
|
"posZ": 87.5744,
|
|
"rotX": 0.02080016,
|
|
"rotY": 270.028625,
|
|
"rotZ": 0.01678151,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sodachi Oikura",
|
|
"Description": "Belligerent Mathematician",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 416,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "99751d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.4901,
|
|
"posY": 1.29520369,
|
|
"posZ": 89.7494,
|
|
"rotX": 0.0208089072,
|
|
"rotY": 269.999,
|
|
"rotZ": 0.0167707466,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Clandestine Favors (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266402,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9d7db7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.28226149,
|
|
"posZ": 73.7596,
|
|
"rotX": 0.0208106842,
|
|
"rotY": 269.9927,
|
|
"rotZ": 0.0167683717,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Crimson Dagger (2)",
|
|
"Description": "Fueled by Blood",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 403,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a03156",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 19.5868015,
|
|
"posY": 1.25077665,
|
|
"posZ": 69.6143951,
|
|
"rotX": 359.979156,
|
|
"rotY": 89.9929047,
|
|
"rotZ": 359.983246,
|
|
"scaleX": 2.0,
|
|
"scaleY": 2.0,
|
|
"scaleZ": 2.0
|
|
},
|
|
"Nickname": "Doubles (Incomplete)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.02148666,
|
|
"g": 0.00100758043,
|
|
"b": 0.02148666
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
|
|
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"PhysicsMaterial": {
|
|
"StaticFriction": 0.6,
|
|
"DynamicFriction": 0.6,
|
|
"Bounciness": 0.0,
|
|
"FrictionCombine": 0,
|
|
"BounceCombine": 0
|
|
},
|
|
"Rigidbody": {
|
|
"Mass": 1.375,
|
|
"Drag": 5.0,
|
|
"AngularDrag": 5.0,
|
|
"UseGravity": true
|
|
},
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "abe76b",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 19.8218079,
|
|
"posY": 3.386453,
|
|
"posZ": 69.50818,
|
|
"rotX": 0.02082507,
|
|
"rotY": 269.9995,
|
|
"rotZ": 0.0167713128,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
266409,
|
|
266408,
|
|
266407,
|
|
266406,
|
|
266405
|
|
],
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "16c0e3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 27.8310413,
|
|
"posY": 1.2919085,
|
|
"posZ": 68.14271,
|
|
"rotX": 0.02081269,
|
|
"rotY": 269.9863,
|
|
"rotZ": 0.0167660285,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266409,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "28744e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.3081818,
|
|
"posY": 1.29386353,
|
|
"posZ": 71.7486954,
|
|
"rotX": 0.0208088811,
|
|
"rotY": 269.99942,
|
|
"rotZ": 0.0167709552,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266408,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b6e1a0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.3081512,
|
|
"posY": 1.29184377,
|
|
"posZ": 64.84866,
|
|
"rotX": 0.02080862,
|
|
"rotY": 269.9994,
|
|
"rotZ": 0.0167709868,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266407,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "19b469",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.3082142,
|
|
"posY": 1.30934143,
|
|
"posZ": 67.14871,
|
|
"rotX": 359.3917,
|
|
"rotY": 269.99823,
|
|
"rotZ": 0.0168189816,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266406,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fdb58a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.30809,
|
|
"posY": 1.36541235,
|
|
"posZ": 67.14869,
|
|
"rotX": 359.9038,
|
|
"rotY": 270.000183,
|
|
"rotZ": 0.0167925246,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266405,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "a311eb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.4068,
|
|
"posY": 1.29403043,
|
|
"posZ": 94.5291,
|
|
"rotX": 0.0208060388,
|
|
"rotY": 270.00882,
|
|
"rotZ": 0.016775094,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Railgun (3)",
|
|
"Description": "CQB variant",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 740,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a4ca98",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6429,
|
|
"posY": 1.2883209,
|
|
"posZ": 94.4596,
|
|
"rotX": 0.0208092481,
|
|
"rotY": 269.9978,
|
|
"rotZ": 0.016770402,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Episode",
|
|
"Description": "Half-Vampire",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a50220",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.9869,
|
|
"posY": 1.28031182,
|
|
"posZ": 85.2496,
|
|
"rotX": 0.02080104,
|
|
"rotY": 270.0254,
|
|
"rotZ": 0.0167803783,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Liquid Memories",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 704,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "aa4203",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.28562772,
|
|
"posZ": 85.2596,
|
|
"rotX": 0.0208106916,
|
|
"rotY": 269.992645,
|
|
"rotZ": 0.0167686325,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Preemptive Strike (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 404,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "acf78b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.5652,
|
|
"posY": 1.28979337,
|
|
"posZ": 76.1357,
|
|
"rotX": 0.0208009444,
|
|
"rotY": 270.0255,
|
|
"rotZ": 0.016780423,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Nazar",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 738,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b1ab4a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.9535,
|
|
"posY": 1.29754663,
|
|
"posZ": 89.7342,
|
|
"rotX": 0.0208084788,
|
|
"rotY": 270.000732,
|
|
"rotZ": 0.016771486,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pay In Blood (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266417,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bb2d8c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909961,
|
|
"posY": 1.28155029,
|
|
"posZ": 80.6616,
|
|
"rotX": 0.0208163261,
|
|
"rotY": 269.9734,
|
|
"rotZ": 0.0167614482,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Swiftness (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 434,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bbd9b9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.4901,
|
|
"posY": 1.29385734,
|
|
"posZ": 85.1494,
|
|
"rotX": 0.0208086781,
|
|
"rotY": 269.999146,
|
|
"rotZ": 0.0167708918,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Quixoticism (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266404,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bf1297",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -22.6157,
|
|
"posY": 1.31099141,
|
|
"posZ": -69.0756,
|
|
"rotX": 0.0208074357,
|
|
"rotY": 270.0037,
|
|
"rotZ": 0.016772341,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Monkey Paw",
|
|
"Description": "Granting \"wishes\"",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 205,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c25061",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.221,
|
|
"posY": 1.28964686,
|
|
"posZ": 94.5498,
|
|
"rotX": 0.0208131336,
|
|
"rotY": 269.985,
|
|
"rotZ": 0.0167657509,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Master of Disguise",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 724,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c48fc3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.987,
|
|
"posY": 1.27896535,
|
|
"posZ": 80.6496,
|
|
"rotX": 0.0207974538,
|
|
"rotY": 270.0384,
|
|
"rotZ": 0.01678503,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Power Through (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 709,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c53e8d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.27823663,
|
|
"posZ": 73.7496,
|
|
"rotX": 0.0208151881,
|
|
"rotY": 269.977325,
|
|
"rotZ": 0.01676295,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Psychoanalysis (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 446,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c6ef37",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.9413,
|
|
"posY": 1.29821348,
|
|
"posZ": 92.0275,
|
|
"rotX": 0.0208083354,
|
|
"rotY": 270.000732,
|
|
"rotZ": 0.016771337,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Memory Palace (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266416,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c821e9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.28495455,
|
|
"posZ": 82.9596,
|
|
"rotX": 0.02080774,
|
|
"rotY": 270.0027,
|
|
"rotZ": 0.01677204,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Critical Hit (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 721,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c9c916",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76350021,
|
|
"posY": 1.27883744,
|
|
"posZ": 66.8742,
|
|
"rotX": 0.0208048373,
|
|
"rotY": 270.012543,
|
|
"rotZ": 0.0167757235,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mathematical Proof (4)",
|
|
"Description": "Associativity",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 422,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ca55a3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.286301,
|
|
"posZ": 87.5596,
|
|
"rotX": 0.0208057389,
|
|
"rotY": 270.0103,
|
|
"rotZ": 0.0167750288,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Assail",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 723,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ce6e77",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.669,
|
|
"posY": 1.29568088,
|
|
"posZ": 87.435,
|
|
"rotX": 0.0208087787,
|
|
"rotY": 269.9996,
|
|
"rotZ": 0.0167709552,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Veil Influence (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266413,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cf1b06",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -26.3002,
|
|
"posY": 1.30734956,
|
|
"posZ": -76.9456,
|
|
"rotX": 0.0207963809,
|
|
"rotY": 270.0413,
|
|
"rotZ": 0.0167861879,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Debilitation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 210,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d40f7c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.669,
|
|
"posY": 1.29702735,
|
|
"posZ": 92.035,
|
|
"rotX": 0.02080885,
|
|
"rotY": 269.9996,
|
|
"rotZ": 0.0167709123,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Round Up (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266411,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d490f4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909949,
|
|
"posY": 1.28558969,
|
|
"posZ": 94.4616,
|
|
"rotX": 0.0208151732,
|
|
"rotY": 269.977173,
|
|
"rotZ": 0.0167629588,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Deishu Kaiki",
|
|
"Description": "the Conman",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 428,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d8c089",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76350021,
|
|
"posY": 1.28287685,
|
|
"posZ": 80.6744,
|
|
"rotX": 0.0208048131,
|
|
"rotY": 270.012726,
|
|
"rotZ": 0.0167759731,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scrupulous Study",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 419,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d90685",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4322,
|
|
"posY": 1.2836225,
|
|
"posZ": 92.1496,
|
|
"rotX": 0.0208041947,
|
|
"rotY": 270.01535,
|
|
"rotZ": 0.01677686,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Magician's Hat",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 441,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d921bc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.5652,
|
|
"posY": 1.29450607,
|
|
"posZ": 92.2358,
|
|
"rotX": 0.0208086856,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167712215,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Railgun",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 731,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dabd8d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.9869,
|
|
"posY": 1.28233159,
|
|
"posZ": 92.1496,
|
|
"rotX": 0.020803405,
|
|
"rotY": 270.0178,
|
|
"rotZ": 0.0167774428,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Stoic",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 714,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "db5369",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76350021,
|
|
"posY": 1.28422332,
|
|
"posZ": 85.2744,
|
|
"rotX": 0.0208087265,
|
|
"rotY": 269.9992,
|
|
"rotZ": 0.0167707969,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Process of Elimination",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 417,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dba2a6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4323,
|
|
"posY": 1.27621686,
|
|
"posZ": 66.8496,
|
|
"rotX": 0.020820925,
|
|
"rotY": 269.9579,
|
|
"rotZ": 0.0167557858,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dispel Magic (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 449,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dda3dc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -26.2996,
|
|
"posY": 1.30504549,
|
|
"posZ": -84.818,
|
|
"rotX": 0.020802401,
|
|
"rotY": 270.0212,
|
|
"rotZ": 0.0167788174,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "High-ranking Cult Member",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 214,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ddcdcc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.9559,
|
|
"posY": 1.29687428,
|
|
"posZ": 87.4343,
|
|
"rotX": 0.0208085179,
|
|
"rotY": 270.0002,
|
|
"rotZ": 0.0167712588,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Doppelganger (1)",
|
|
"Description": "sorry idk how to add the umalauts",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266418,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dedfbb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.669,
|
|
"posY": 1.29770052,
|
|
"posZ": 94.335,
|
|
"rotX": 0.02080864,
|
|
"rotY": 269.9993,
|
|
"rotZ": 0.016771,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ruthlessness (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266410,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "df828a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.565,
|
|
"posY": 1.29046214,
|
|
"posZ": 78.4206,
|
|
"rotX": 0.0208189562,
|
|
"rotY": 269.9646,
|
|
"rotZ": 0.0167583115,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Nullify (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 737,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e1f933",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909973,
|
|
"posY": 1.27751076,
|
|
"posZ": 66.8616,
|
|
"rotX": 0.020815637,
|
|
"rotY": 269.9755,
|
|
"rotZ": 0.0167622678,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Roka Numachi (3)",
|
|
"Description": "The \"collector\"",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 437,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e4f0d2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.5652,
|
|
"posY": 1.29114,
|
|
"posZ": 80.7358,
|
|
"rotX": 0.0208155811,
|
|
"rotY": 269.9763,
|
|
"rotZ": 0.0167624559,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Inveigle",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 736,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e5ebfc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4323,
|
|
"posY": 1.27689,
|
|
"posZ": 69.1496,
|
|
"rotX": 0.0208010767,
|
|
"rotY": 270.0253,
|
|
"rotZ": 0.0167802367,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Exile (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 718,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e94aa3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.1791,
|
|
"posY": 1.28893256,
|
|
"posZ": 92.162,
|
|
"rotX": 0.0208160337,
|
|
"rotY": 269.9738,
|
|
"rotZ": 0.0167617835,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bloodied Suit",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 725,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e9746a",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -8.9914,
|
|
"posY": 1.283006,
|
|
"posZ": 94.459,
|
|
"rotX": 0.0208086371,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167711526,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Flintlock",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2666": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572216206/DDEAC73104520D53D5849A9777FBB01E73979DA7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e9d7dc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909961,
|
|
"posY": 1.27616429,
|
|
"posZ": 62.2617,
|
|
"rotX": 0.0208144039,
|
|
"rotY": 269.9798,
|
|
"rotZ": 0.0167637635,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pulling Strings (5)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 439,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f20025",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76349974,
|
|
"posY": 1.28556991,
|
|
"posZ": 89.8744,
|
|
"rotX": 0.02080019,
|
|
"rotY": 270.0287,
|
|
"rotZ": 0.0167815965,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mathematical Proof",
|
|
"Description": "Unproven",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 415,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f424b5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.2956,
|
|
"posY": 1.30988145,
|
|
"posZ": -76.9414,
|
|
"rotX": 0.0209650267,
|
|
"rotY": 269.900879,
|
|
"rotZ": 0.015853839,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unlimited Rulebook",
|
|
"Description": "\"I said with a posed look.\"",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 208,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571799551/B394B91A44AA9DCFC5E24E98E22289CBB118D182/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f52130",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.4901,
|
|
"posY": 1.29453051,
|
|
"posZ": 87.4494,
|
|
"rotX": 0.0208087489,
|
|
"rotY": 269.999146,
|
|
"rotZ": 0.016770862,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Automatic Writing (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266403,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897572132461/24EB4A8F40F719BFC39D2F52E35D682CBA1F8D72/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f5d683",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.9869,
|
|
"posY": 1.27694559,
|
|
"posZ": 73.7496,
|
|
"rotX": 0.0208002552,
|
|
"rotY": 270.0284,
|
|
"rotZ": 0.0167814866,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Grandiose Delusion (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 708,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f5dde8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -12.6025,
|
|
"posY": 1.28101087,
|
|
"posZ": 92.1235,
|
|
"rotX": 0.0208172742,
|
|
"rotY": 269.9702,
|
|
"rotZ": 0.016760245,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ataxia",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 727,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f67bb7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909961,
|
|
"posY": 1.27683759,
|
|
"posZ": 64.5617,
|
|
"rotX": 0.0208157171,
|
|
"rotY": 269.975,
|
|
"rotZ": 0.0167621579,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Duplicitous (4)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 438,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f81d7c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -8.987,
|
|
"posY": 1.27559912,
|
|
"posZ": 69.1496,
|
|
"rotX": 0.020798523,
|
|
"rotY": 270.034,
|
|
"rotZ": 0.0167836323,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Second Sight (2)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 710,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"7": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571996350/8BFAFEE037831D11E750A10A19E68A1B75D0C94A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f91daf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.7635,
|
|
"posY": 1.28355014,
|
|
"posZ": 82.9744,
|
|
"rotX": 0.0208044872,
|
|
"rotY": 270.0137,
|
|
"rotZ": 0.0167760886,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Recall the Way Out",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 418,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "facdd4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76350021,
|
|
"posY": 1.28153038,
|
|
"posZ": 76.0744,
|
|
"rotX": 0.0208052453,
|
|
"rotY": 270.011749,
|
|
"rotZ": 0.0167753957,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Neuroethology (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 423,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fc5916",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 5.6423,
|
|
"posY": 1.27889526,
|
|
"posZ": 62.2596,
|
|
"rotX": 0.0208093319,
|
|
"rotY": 269.9967,
|
|
"rotZ": 0.01677002,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Musket Rifle (4)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 411,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fd5d1b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.4323,
|
|
"posY": 1.27554369,
|
|
"posZ": 64.5497,
|
|
"rotX": 0.0208047275,
|
|
"rotY": 270.0133,
|
|
"rotZ": 0.0167760644,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abscond (3)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 450,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fd989b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.76350021,
|
|
"posY": 1.28220367,
|
|
"posZ": 78.3744,
|
|
"rotX": 0.0208050348,
|
|
"rotY": 270.0119,
|
|
"rotZ": 0.0167757217,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Single-Lens Reflex Camera (1)",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 420,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "feac86",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.87909973,
|
|
"posY": 1.28356993,
|
|
"posZ": 87.5616,
|
|
"rotX": 0.0208129045,
|
|
"rotY": 269.9852,
|
|
"rotZ": 0.0167656932,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "High Value Target",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 432,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1767123897571942801/FD926A68A81C50F16A758845B1F293AE014443BE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1536247897972802691/7CD35870F8BB62440A3D121823CEF9B43FB979C4/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"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
|
|
}
|
|
}
|
|
]
|
|
}
|