6425 lines
210 KiB
JSON
6425 lines
210 KiB
JSON
{
|
|
"GUID": "965030",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 21.740057,
|
|
"posY": 1.27136481,
|
|
"posZ": 51.9947739,
|
|
"rotX": 0.0208084825,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.0167713221,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "The Undying",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1824531491067739120/4AD2D51DAC6215F2866BB2AD15D47109B432B999/",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 3,
|
|
"TypeIndex": 6,
|
|
"CustomShader": {
|
|
"SpecularColor": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"SpecularIntensity": 0.0,
|
|
"SpecularSharpness": 2.0,
|
|
"FresnelStrength": 0.0
|
|
},
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend",
|
|
"LuaScriptState": "{\"ml\":{\"0fd978\":{\"lock\":false,\"pos\":{\"x\":-30.2235,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0082,\"z\":0.0799}},\"12a3b2\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6349,\"z\":-7.7002},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"14b5db\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"15cbab\":{\"lock\":false,\"pos\":{\"x\":-33.7068,\"y\":1.6284,\"z\":-0.1776},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"162580\":{\"lock\":false,\"pos\":{\"x\":-6.3892,\"y\":1.7348,\"z\":-20.6362},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"297f5e\":{\"lock\":false,\"pos\":{\"x\":-5.4446,\"y\":1.734,\"z\":-18.9178},\"rot\":{\"x\":359.9201,\"y\":270.0124,\"z\":180.0168}},\"30f698\":{\"lock\":false,\"pos\":{\"x\":-33.2362,\"y\":1.6256,\"z\":-7.634},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"458680\":{\"lock\":false,\"pos\":{\"x\":-26.813,\"y\":1.621,\"z\":7.4371},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0169}},\"4feab4\":{\"lock\":false,\"pos\":{\"x\":-7.4591,\"y\":1.5537,\"z\":-18.8829},\"rot\":{\"x\":359.9201,\"y\":269.9981,\"z\":180.0169}},\"5138ed\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"520fe8\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"56ddd0\":{\"lock\":false,\"pos\":{\"x\":-3.928,\"y\":1.6818,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":180.0168}},\"5a7b85\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"5b38c6\":{\"lock\":false,\"pos\":{\"x\":-33.5265,\"y\":1.6271,\"z\":-3.896},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0168}},\"67baab\":{\"lock\":false,\"pos\":{\"x\":-20.3626,\"y\":1.6121,\"z\":7.635},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"69ff3d\":{\"lock\":false,\"pos\":{\"x\":-5.603,\"y\":1.4978,\"z\":28.7767},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"750893\":{\"lock\":false,\"pos\":{\"x\":-10.4844,\"y\":1.6395,\"z\":11.0528},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0168}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":45,\"z\":0}},\"8112ff\":{\"lock\":false,\"pos\":{\"x\":-3.8055,\"y\":1.5825,\"z\":-14.7204},\"rot\":{\"x\":359.9197,\"y\":270.0176,\"z\":0.0168}},\"88570c\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"930283\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"95ce6e\":{\"lock\":false,\"pos\":{\"x\":-23.6758,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0081,\"z\":0.0799}},\"a31359\":{\"lock\":false,\"pos\":{\"x\":-27.0588,\"y\":1.6192,\"z\":-0.1229},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"b1bd8f\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"bca4a0\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6191,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"c61150\":{\"lock\":false,\"pos\":{\"x\":-36.7725,\"y\":1.6316,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0071,\"z\":0.0799}},\"cbc8fb\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6212,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"d54c36\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"dc3b69\":{\"lock\":false,\"pos\":{\"x\":-10.7851,\"y\":1.6484,\"z\":7.1934},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"f514f5\":{\"lock\":false,\"pos\":{\"x\":-10.4502,\"y\":1.6983,\"z\":14.5899},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":180.0168}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "c61150",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -36.7725,
|
|
"posY": 1.63160622,
|
|
"posZ": -3.83000016,
|
|
"rotX": 0.0168291312,
|
|
"rotY": 180.007111,
|
|
"rotZ": 0.07994185,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"2": {
|
|
"GUID": "44b0c5",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -39.7933121,
|
|
"posY": 1.63758957,
|
|
"posZ": 2.038383,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9961,
|
|
"rotZ": 0.0168742146,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"3": {
|
|
"GUID": "5b38c6",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -38.8217163,
|
|
"posY": 1.99356019,
|
|
"posZ": 0.4159239,
|
|
"rotX": 359.9201,
|
|
"rotY": 272.9828,
|
|
"rotZ": 0.01687373,
|
|
"scaleX": 0.8,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.8
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "cbc8fb",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -17.12,
|
|
"posY": 1.62115753,
|
|
"posZ": 7.57000065,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.000122,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mausoleum",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 275700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2757": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025189157/80693097CAE78B20931A36CE0E3C9462BF90DA21/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907272351146336/936AC06029E9C656F8CA00222AC69DEE46B40C94/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "95ce6e",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -23.6758,
|
|
"posY": 1.6156038,
|
|
"posZ": 3.86,
|
|
"rotX": 0.0168279037,
|
|
"rotY": 180.008072,
|
|
"rotZ": 0.07994373,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"2": {
|
|
"GUID": "44b0c5",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -39.7933121,
|
|
"posY": 1.63758957,
|
|
"posZ": 2.038383,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9961,
|
|
"rotZ": 0.0168742146,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"3": {
|
|
"GUID": "5b38c6",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -38.8217163,
|
|
"posY": 1.99356019,
|
|
"posZ": 0.4159239,
|
|
"rotX": 359.9201,
|
|
"rotY": 272.9828,
|
|
"rotZ": 0.01687373,
|
|
"scaleX": 0.8,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.8
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "a31359",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -27.0588,
|
|
"posY": 1.61915088,
|
|
"posZ": -0.122900248,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999756,
|
|
"rotZ": 0.0168683678,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"2": {
|
|
"GUID": "44b0c5",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -39.7933121,
|
|
"posY": 1.63758957,
|
|
"posZ": 2.038383,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9961,
|
|
"rotZ": 0.0168742146,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"3": {
|
|
"GUID": "5b38c6",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -38.8217163,
|
|
"posY": 1.99356019,
|
|
"posZ": 0.4159239,
|
|
"rotX": 359.9201,
|
|
"rotY": 272.9828,
|
|
"rotZ": 0.01687373,
|
|
"scaleX": 0.8,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.8
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "dc3b69",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -10.7851267,
|
|
"posY": 1.64842331,
|
|
"posZ": 7.193405,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.000122,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hidden Trail locations",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 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": [
|
|
276300,
|
|
276400,
|
|
276200,
|
|
276100,
|
|
277800,
|
|
276500
|
|
],
|
|
"CustomDeck": {
|
|
"2763": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025195329/0583045A163D31609258319950A77DD2013062C4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025195746/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2764": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025196271/EA39AD64A7D498AB825122C37CCC0F1773523DDA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025196699/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2762": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025194247/2E854B88B06F60E99859C4E7FF2E0504E8CFC62C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025194714/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2761": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025192812/011401379E1514785786AFEC2421E9D49ED04B06/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025193269/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753034650640/F59CB09E39839713FB8E9903B305F2E515622C35/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025198536/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2765": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025197214/1E54B8BF1FC06B01F52D6305AAEFBAD79DEA12C9/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025197563/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "825147",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 1.18317342,
|
|
"posY": 1.27586675,
|
|
"posZ": 57.4458466,
|
|
"rotX": 0.0208085719,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167710353,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hidden Trail",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 276300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2763": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025195329/0583045A163D31609258319950A77DD2013062C4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025195746/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2dfa76",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -2.814175,
|
|
"posY": 1.27431107,
|
|
"posZ": 57.0905647,
|
|
"rotX": 0.0208087731,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.0167712066,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hidden Trail",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 276400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2764": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025196271/EA39AD64A7D498AB825122C37CCC0F1773523DDA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025196699/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f5c4fb",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 6.311153,
|
|
"posY": 1.27785373,
|
|
"posZ": 57.87126,
|
|
"rotX": 0.0208084155,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167712122,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hidden Trail",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 276200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2762": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025194247/2E854B88B06F60E99859C4E7FF2E0504E8CFC62C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025194714/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b1e473",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.7982864,
|
|
"posY": 1.28139508,
|
|
"posZ": 58.5782356,
|
|
"rotX": 0.0846073851,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.016760841,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hidden Trail",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 276100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2761": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025192812/011401379E1514785786AFEC2421E9D49ED04B06/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025193269/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9c766c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -11.5878687,
|
|
"posY": 1.71245134,
|
|
"posZ": -12.8974533,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0168483984,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hidden Trail",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2778": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753034650640/F59CB09E39839713FB8E9903B305F2E515622C35/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025198536/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "96bf33",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -6.87987757,
|
|
"posY": 1.27277792,
|
|
"posZ": 56.8971748,
|
|
"rotX": 0.0208088122,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167714674,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hidden Trail",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 276500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2765": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025197214/1E54B8BF1FC06B01F52D6305AAEFBAD79DEA12C9/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025197563/98730FD1DCFFE93E1565AB5BA38C67419510B02A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "750893",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -10.4844255,
|
|
"posY": 1.63951015,
|
|
"posZ": 11.0528078,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.01683676,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Villagers",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 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": [
|
|
277100,
|
|
277600,
|
|
276800,
|
|
277300
|
|
],
|
|
"CustomDeck": {
|
|
"2771": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025237801/04E5D7079C369CD209089A167C4ADC4142BB5489/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025238212/D788128B9DA48C43BA1AD6350A5235CCB22FE779/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2776": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025242328/EAA5EA7E5293E60A35CCF86089C1E155C1F3C20A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025242610/A80D699483D70CD85B474D3D5AFD8B5096348B67/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2768": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025235114/A231B4D8A0771BA16E4A057CF66310D6E8CDA6F4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025235457/BD6A32DFBD576EF1D2343C50B12ACAF22834B0CB/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2773": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025239995/DB17015405C5A1B16D867B3C6AA99124F5E2035A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025240307/714129F6B3962EC4663958470E6144A9A2D9B0FB/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "76ced3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 0.475757331,
|
|
"posY": 1.27223563,
|
|
"posZ": 45.9182854,
|
|
"rotX": 0.0208085515,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.0167710632,
|
|
"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": 277100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2771": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025237801/04E5D7079C369CD209089A167C4ADC4142BB5489/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025238212/D788128B9DA48C43BA1AD6350A5235CCB22FE779/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a27697",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 0.475833118,
|
|
"posY": 1.31405509,
|
|
"posZ": 45.6117,
|
|
"rotX": 0.0208083317,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.01677121,
|
|
"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": 277600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2776": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025242328/EAA5EA7E5293E60A35CCF86089C1E155C1F3C20A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025242610/A80D699483D70CD85B474D3D5AFD8B5096348B67/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "41e04d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 0.398512542,
|
|
"posY": 1.34779119,
|
|
"posZ": 45.05682,
|
|
"rotX": 0.0208084844,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.016771106,
|
|
"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": 276800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2768": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025235114/A231B4D8A0771BA16E4A057CF66310D6E8CDA6F4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025235457/BD6A32DFBD576EF1D2343C50B12ACAF22834B0CB/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "15aade",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -0.39431107,
|
|
"posY": 1.35762691,
|
|
"posZ": 46.7315979,
|
|
"rotX": 0.0208086539,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167706925,
|
|
"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": 277300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2773": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025239995/DB17015405C5A1B16D867B3C6AA99124F5E2035A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025240307/714129F6B3962EC4663958470E6144A9A2D9B0FB/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "56ddd0",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.92802715,
|
|
"posY": 1.68179655,
|
|
"posZ": 5.7571063,
|
|
"rotX": 359.919739,
|
|
"rotY": 269.9999,
|
|
"rotZ": 180.016815,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
231717,
|
|
231716,
|
|
231715,
|
|
275000,
|
|
275200,
|
|
231717,
|
|
231715,
|
|
231716,
|
|
231718,
|
|
275100,
|
|
231716,
|
|
275000,
|
|
275200,
|
|
231718,
|
|
275100
|
|
],
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2750": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025169395/2C3FD92756D1CE5F3ED773B175C9FB0C17DBA024/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907698231630731/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2752": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025171220/90A9EA50195F65F36B42303C7D4118A83D3DADB7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907698231632062/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2751": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025170225/6AA47BE484D2A91450FDC30F928AA16B03E9D6D8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907698231631432/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "bfc23d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.5236349,
|
|
"posY": 1.3003577,
|
|
"posZ": 55.0862236,
|
|
"rotX": 359.3812,
|
|
"rotY": 269.97348,
|
|
"rotZ": 0.0168697089,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Frozen in Fear",
|
|
"Description": "Terror.",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 231717,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7dde15",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 33.8628654,
|
|
"posY": 1.29246163,
|
|
"posZ": 62.5487556,
|
|
"rotX": 0.0208095834,
|
|
"rotY": 269.9975,
|
|
"rotZ": 0.0167709943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rotting Remains",
|
|
"Description": "Terror.",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 231716,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e17f4c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.5083485,
|
|
"posY": 1.29746,
|
|
"posZ": 49.4149,
|
|
"rotX": 359.426727,
|
|
"rotY": 269.973663,
|
|
"rotZ": 0.0166930985,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Grasping Hands",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 231715,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a6a114",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 18.2862167,
|
|
"posY": 1.47907984,
|
|
"posZ": 32.1214333,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.01687265,
|
|
"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": 275000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2750": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025169395/2C3FD92756D1CE5F3ED773B175C9FB0C17DBA024/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907698231630731/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a57f16",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 14.5659876,
|
|
"posY": 1.47942567,
|
|
"posZ": 15.68296,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168730635,
|
|
"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": 275200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2752": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025171220/90A9EA50195F65F36B42303C7D4118A83D3DADB7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907698231632062/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "272fea",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 11.889719,
|
|
"posY": 1.28181338,
|
|
"posZ": 55.1848259,
|
|
"rotX": 0.122524694,
|
|
"rotY": 269.9754,
|
|
"rotZ": 0.0167474747,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Frozen in Fear",
|
|
"Description": "Terror.",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 231717,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e999fb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 11.8754787,
|
|
"posY": 1.28060257,
|
|
"posZ": 49.36778,
|
|
"rotX": 0.0222506076,
|
|
"rotY": 269.9748,
|
|
"rotZ": 0.0163345225,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Grasping Hands",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 231715,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "282670",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.831831,
|
|
"posY": 1.28453565,
|
|
"posZ": 61.565033,
|
|
"rotX": 0.02080935,
|
|
"rotY": 269.99762,
|
|
"rotZ": 0.0167705864,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rotting Remains",
|
|
"Description": "Terror.",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 231716,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "97416f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 11.6118879,
|
|
"posY": 1.28061068,
|
|
"posZ": 52.65051,
|
|
"rotX": 0.1090223,
|
|
"rotY": 270.0088,
|
|
"rotZ": 0.0166159626,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dissonant Voices",
|
|
"Description": "Terror.",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 231718,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d1248e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 15.50856,
|
|
"posY": 1.48090935,
|
|
"posZ": 25.1840553,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168748815,
|
|
"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": 275100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2751": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025170225/6AA47BE484D2A91450FDC30F928AA16B03E9D6D8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907698231631432/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "be387a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 33.8629951,
|
|
"posY": 1.29178846,
|
|
"posZ": 60.24879,
|
|
"rotX": 0.0208098218,
|
|
"rotY": 269.997467,
|
|
"rotZ": 0.0167694613,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rotting Remains",
|
|
"Description": "Terror.",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 231716,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cf66f3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 14.3543129,
|
|
"posY": 1.48456991,
|
|
"posZ": 32.1506653,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.0168738,
|
|
"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": 275000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2750": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025169395/2C3FD92756D1CE5F3ED773B175C9FB0C17DBA024/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907698231630731/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2040e7",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 18.2888927,
|
|
"posY": 1.47487211,
|
|
"posZ": 17.844532,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.016871905,
|
|
"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": 275200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2752": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025171220/90A9EA50195F65F36B42303C7D4118A83D3DADB7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907698231632062/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5173e5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.4036617,
|
|
"posY": 1.29815316,
|
|
"posZ": 52.3589935,
|
|
"rotX": 359.432037,
|
|
"rotY": 270.0082,
|
|
"rotZ": 0.0168754514,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dissonant Voices",
|
|
"Description": "Terror.",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 231718,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "90c717",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 18.8306026,
|
|
"posY": 1.47640872,
|
|
"posZ": 25.62769,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999878,
|
|
"rotZ": 0.0168719,
|
|
"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": 275100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2751": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025170225/6AA47BE484D2A91450FDC30F928AA16B03E9D6D8/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907698231631432/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "30f698",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -33.2362,
|
|
"posY": 1.6255573,
|
|
"posZ": -7.6340003,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0168673024,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"2": {
|
|
"GUID": "44b0c5",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -39.7933121,
|
|
"posY": 1.63758957,
|
|
"posZ": 2.038383,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9961,
|
|
"rotZ": 0.0168742146,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"3": {
|
|
"GUID": "5b38c6",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -38.8217163,
|
|
"posY": 1.99356019,
|
|
"posZ": 0.4159239,
|
|
"rotX": 359.9201,
|
|
"rotY": 272.9828,
|
|
"rotZ": 0.01687373,
|
|
"scaleX": 0.8,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.8
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "88570c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -36.7732,
|
|
"posY": 1.646329,
|
|
"posZ": -0.0299998056,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Market Square",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 275600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2756": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025188025/EF05C258F9294A694A909B68EE9AA7FF7B6CC2B4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025188643/8D9DC8D740E8AF2FB912B992C0E5D75D0489CFA0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7a167a",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 1.70820069,
|
|
"posY": 1.55829954,
|
|
"posZ": 14.2764006,
|
|
"rotX": 359.955139,
|
|
"rotY": 224.997879,
|
|
"rotZ": 0.06867232,
|
|
"scaleX": 2.0,
|
|
"scaleY": 2.0,
|
|
"scaleZ": 2.0
|
|
},
|
|
"Nickname": "Set-aside",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.02148666,
|
|
"g": 0.00100758043,
|
|
"b": 0.02148666
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
|
|
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"PhysicsMaterial": {
|
|
"StaticFriction": 0.6,
|
|
"DynamicFriction": 0.6,
|
|
"Bounciness": 0.0,
|
|
"FrictionCombine": 0,
|
|
"BounceCombine": 0
|
|
},
|
|
"Rigidbody": {
|
|
"Mass": 1.375,
|
|
"Drag": 5.0,
|
|
"AngularDrag": 5.0,
|
|
"UseGravity": true
|
|
},
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "aa8a62",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -2.88082314,
|
|
"posY": 2.4962306,
|
|
"posZ": -37.1049919,
|
|
"rotX": 0.0208086222,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.0167710688,
|
|
"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": 277200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2772": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025238934/455BBB202D60EEF325C5A64F70C9D603126766B5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825809034/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7c0453",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 1.12737358,
|
|
"posY": 2.49982858,
|
|
"posZ": -26.0302143,
|
|
"rotX": 0.0931706354,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.01678409,
|
|
"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": 276900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2769": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025236163/8FD8D78ABB0177833EA44F57142C10AD5FB8B3AD/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825806325/7B750F7D5A4E6D49B529B6A5010650B22FB7144E/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "63a0f2",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 12.5877018,
|
|
"posY": 2.3404665,
|
|
"posZ": -56.4682579,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01687191,
|
|
"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": 277900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2779": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753034682020/D47DBD84D79B0CD58D2D4C5D3B42D4FF44B1E8B7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825813181/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "095ede",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 3.09217048,
|
|
"posY": 2.493133,
|
|
"posZ": -30.43922,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999969,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Catacombs",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 277700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2777": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025249496/1DFC1A54AC4B9FF8B241B521C77AC04336428E25/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907272351161193/BE7B19D6027CF6D5B852EAF7BAAFF386E4065AE6/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0ccc52",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 11.9034166,
|
|
"posY": 2.48118258,
|
|
"posZ": -21.93032,
|
|
"rotX": 0.0208085086,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.01677113,
|
|
"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": 277000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2770": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025236917/145F95D2C5086FD2DFF6D661CFF12F81BD5942EC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825807343/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b9dbad",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 12.9080648,
|
|
"posY": 2.48013,
|
|
"posZ": -20.88221,
|
|
"rotX": 0.0208084527,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.0167708043,
|
|
"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": 277000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2770": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025236917/145F95D2C5086FD2DFF6D661CFF12F81BD5942EC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825807343/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "33f3c7",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 12.8992386,
|
|
"posY": 2.48319769,
|
|
"posZ": -19.8999348,
|
|
"rotX": 0.02080849,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.016771,
|
|
"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": 277400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2774": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025240941/72D7CC74F652396CEF5CB225E49C60DE9911073F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825811212/7B750F7D5A4E6D49B529B6A5010650B22FB7144E/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "824a34",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 13.15097,
|
|
"posY": 2.49506831,
|
|
"posZ": -21.9363976,
|
|
"rotX": 0.0208719913,
|
|
"rotY": 270.001343,
|
|
"rotZ": 0.735315859,
|
|
"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": 277400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2774": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025240941/72D7CC74F652396CEF5CB225E49C60DE9911073F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825811212/7B750F7D5A4E6D49B529B6A5010650B22FB7144E/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c84bea",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.1232233,
|
|
"posY": 2.48508549,
|
|
"posZ": -21.19545,
|
|
"rotX": 0.020808382,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167712178,
|
|
"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": 277400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2774": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025240941/72D7CC74F652396CEF5CB225E49C60DE9911073F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825811212/7B750F7D5A4E6D49B529B6A5010650B22FB7144E/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "67b47c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.2357531,
|
|
"posY": 2.485341,
|
|
"posZ": -19.6323338,
|
|
"rotX": 0.020808598,
|
|
"rotY": 270.0,
|
|
"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": 277400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2774": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025240941/72D7CC74F652396CEF5CB225E49C60DE9911073F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825811212/7B750F7D5A4E6D49B529B6A5010650B22FB7144E/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "69ff3d",
|
|
"Name": "Custom_PDF",
|
|
"Transform": {
|
|
"posX": -5.60297251,
|
|
"posY": 1.49779463,
|
|
"posZ": 28.7766533,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0168734267,
|
|
"scaleX": 3.907751,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 3.907751
|
|
},
|
|
"Nickname": "Scenario guide",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomPDF": {
|
|
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1848177989707928319/A75561539C29B0A05378DD68C952AF666FFD8646/",
|
|
"PDFPassword": "",
|
|
"PDFPage": 0,
|
|
"PDFPageOffset": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b1bd8f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -30.2242,
|
|
"posY": 1.6371969,
|
|
"posZ": -0.0300000217,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Gatehouse",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 275500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2755": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025186294/DE118D2A5F8B33C8FA31EC2A7CD2D8DB3F437897/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130925644/9A6522AD97BD7B528AFD87F9A72E7FA151BC37F1/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0fd978",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -30.2235,
|
|
"posY": 1.62247407,
|
|
"posZ": -3.82999969,
|
|
"rotX": 0.0168277975,
|
|
"rotY": 180.008179,
|
|
"rotZ": 0.07994229,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"2": {
|
|
"GUID": "44b0c5",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -39.7933121,
|
|
"posY": 1.63758957,
|
|
"posZ": 2.038383,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9961,
|
|
"rotZ": 0.0168742146,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"3": {
|
|
"GUID": "5b38c6",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -38.8217163,
|
|
"posY": 1.99356019,
|
|
"posZ": 0.4159239,
|
|
"rotX": 359.9201,
|
|
"rotY": 272.9828,
|
|
"rotZ": 0.01687373,
|
|
"scaleX": 0.8,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.8
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "458680",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -26.813,
|
|
"posY": 1.62102973,
|
|
"posZ": 7.43709946,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999481,
|
|
"rotZ": 0.0168679282,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"2": {
|
|
"GUID": "44b0c5",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -39.7933121,
|
|
"posY": 1.63758957,
|
|
"posZ": 2.038383,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9961,
|
|
"rotZ": 0.0168742146,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"3": {
|
|
"GUID": "5b38c6",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -38.8217163,
|
|
"posY": 1.99356019,
|
|
"posZ": 0.4159239,
|
|
"rotX": 359.9201,
|
|
"rotY": 272.9828,
|
|
"rotZ": 0.01687373,
|
|
"scaleX": 0.8,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.8
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "4feab4",
|
|
"Name": "Custom_Model",
|
|
"Transform": {
|
|
"posX": -7.45910835,
|
|
"posY": 1.55374634,
|
|
"posZ": -18.8829269,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.998138,
|
|
"rotZ": 180.016876,
|
|
"scaleX": 0.5000004,
|
|
"scaleY": 0.5000004,
|
|
"scaleZ": 0.5000004
|
|
},
|
|
"Nickname": "Custom Data Helper",
|
|
"Description": "Include this in custom content for clue spawning!",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomMesh": {
|
|
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/",
|
|
"NormalURL": "",
|
|
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
|
|
"Convex": true,
|
|
"MaterialIndex": 2,
|
|
"TypeIndex": 0,
|
|
"CustomShader": {
|
|
"SpecularColor": {
|
|
"r": 0.7222887,
|
|
"g": 0.507659256,
|
|
"b": 0.339915335
|
|
},
|
|
"SpecularIntensity": 0.4,
|
|
"SpecularSharpness": 7.0,
|
|
"FresnelStrength": 0.0
|
|
},
|
|
"CastShadows": true
|
|
},
|
|
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for <LOCATION_NAME>_<GUID> and if\r\nwe find nothing we look for <LOCATION_NAME>\r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"Market Square_88570c\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Church_930283\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Waystone_12a3b2\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Ruined Cathedral_14b5db\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Decrepit Graveyard_520fe8\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Mausoleum_cbc8fb\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Catacombs_095ede\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"}\r\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\n \"Tool Belt (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n },\r\n \"Tool Belt (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n },\r\n \"Yithian Rifle\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n },\r\n \"xxx\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n }\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\r\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\r\n local dataHelper = getObjectFromGUID('708279')\r\n dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5138ed",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.72470522,
|
|
"posY": 1.62076044,
|
|
"posZ": 0.373300821,
|
|
"rotX": 359.919739,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.0168367624,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agenda deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
274600,
|
|
278000,
|
|
274500
|
|
],
|
|
"CustomDeck": {
|
|
"2746": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025154324/3D807FC487C78C6282DB98D78B69F8C645A0299F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907272351053185/ECBB2BD5D30B0F74B14C0D6A987FDC4A0B53271E/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2780": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1823407745369683236/85874DE7FD3EF5E6DF07192B9945EB91FF611202/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907272351054438/22964E47801D4AC11CA7032A205DEFF0A5FD9FC1/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2745": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025153274/1213BC56F3C118352B1F5AA85C63D45A10BD05F0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824530631131202971/3EBEAC8E9B86E257087236F61BB4747C36793C75/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "c5b0f0",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -2.72469425,
|
|
"posY": 1.59899259,
|
|
"posZ": 0.373298138,
|
|
"rotX": 359.919739,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.01683608,
|
|
"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": 274600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2746": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025154324/3D807FC487C78C6282DB98D78B69F8C645A0299F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907272351053185/ECBB2BD5D30B0F74B14C0D6A987FDC4A0B53271E/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "20339d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -2.72474432,
|
|
"posY": 1.63007975,
|
|
"posZ": 0.373333782,
|
|
"rotX": 359.91983,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.0168363713,
|
|
"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": 278000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2780": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1823407745369683236/85874DE7FD3EF5E6DF07192B9945EB91FF611202/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907272351054438/22964E47801D4AC11CA7032A205DEFF0A5FD9FC1/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2c4ecd",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -2.72474527,
|
|
"posY": 1.66407049,
|
|
"posZ": 0.3733341,
|
|
"rotX": 359.9198,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0168371815,
|
|
"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": 274500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2745": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025153274/1213BC56F3C118352B1F5AA85C63D45A10BD05F0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824530631131202971/3EBEAC8E9B86E257087236F61BB4747C36793C75/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "5b38c6",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -33.5265,
|
|
"posY": 1.62706065,
|
|
"posZ": -3.89600039,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9997,
|
|
"rotZ": 0.0168455262,
|
|
"scaleX": 0.8,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.8
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"2": {
|
|
"GUID": "44b0c5",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -39.7933121,
|
|
"posY": 1.63758957,
|
|
"posZ": 2.038383,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9961,
|
|
"rotZ": 0.0168742146,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"1": {
|
|
"GUID": "3fec80",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -33.5621567,
|
|
"posY": 1.62944686,
|
|
"posZ": 4.05376959,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.01687259,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "67baab",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -20.3626,
|
|
"posY": 1.61209333,
|
|
"posZ": 7.63499975,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0002,
|
|
"rotZ": 0.0168641452,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"2": {
|
|
"GUID": "44b0c5",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -39.7933121,
|
|
"posY": 1.63758957,
|
|
"posZ": 2.038383,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9961,
|
|
"rotZ": 0.0168742146,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"3": {
|
|
"GUID": "5b38c6",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -38.8217163,
|
|
"posY": 1.99356019,
|
|
"posZ": 0.4159239,
|
|
"rotX": 359.9201,
|
|
"rotY": 272.9828,
|
|
"rotZ": 0.01687373,
|
|
"scaleX": 0.8,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.8
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "520fe8",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -23.6765,
|
|
"posY": 1.6303,
|
|
"posZ": 7.570001,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0001,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Decrepit Graveyard",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 275400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2754": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025185467/B3CE0271CB91DFC8B7FC3C45C4FCB1D8EDB26546/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824530839137831696/E9AB12588710FB989725092BA7583E938E7FD4C8/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8112ff",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -3.805501,
|
|
"posY": 1.58246648,
|
|
"posZ": -14.7204018,
|
|
"rotX": 359.919739,
|
|
"rotY": 270.017578,
|
|
"rotZ": 0.0168131087,
|
|
"scaleX": 2.2,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.2
|
|
},
|
|
"Nickname": "Generic Difficulty Selector",
|
|
"Description": "click to set chaos token difficulty",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/",
|
|
"ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-05 6:14 p.m.\r\n---\r\n\r\n\r\nlocal tags = {\r\n bag = \"chaos_bag\",\r\n provider = \"token_list_provider\",\r\n tokens = \"token_image_provider\"\r\n}\r\n\r\n---@class ChaosToken\r\n---@field name string\r\n---@field image string\r\nlocal _ = {}\r\n\r\n---@type table<string|number, ChaosToken>\r\nlocal sources\r\n\r\n---@type table<string, any[]>\r\nlocal tokens\r\n\r\n---@param source TTSObject\r\nlocal LoadSource = function (source)\r\n tokens = source:getTable(\"chaos_tokens\")\r\nend\r\n\r\n---@param token ChaosToken\r\n---@param position Vector\r\n---@param chaos_bag TTSObject\r\n---@return number\r\nlocal SpawnToken = function (token, position, chaos_bag)\r\n spawnObject {\r\n type = \"Custom_Tile\",\r\n position = position,\r\n scale = { 0.81, 1.0, 0.81 },\r\n rotation = { 0, 270, 0 },\r\n ---@param object TTSObject\r\n callback_function = function(object, _, _)\r\n object:setName(token.name)\r\n chaos_bag:putObject(object)\r\n end\r\n }:setCustomObject {\r\n image = token.image,\r\n type = 2,\r\n thickness = 0.1\r\n }\r\nend\r\n\r\n---@param chaos_bag TTSObject\r\nlocal emptyBag= function (chaos_bag)\r\n local object = chaos_bag:getObjects()\r\n local pos = self:getPosition()\r\n pos.y = pos.y+1\r\n\r\n for _, object in ipairs(object) do\r\n chaos_bag:takeObject {\r\n guid = object.guid,\r\n position = pos,\r\n ---@param item TTSObject\r\n callback_function = function (item) item:destruct() end\r\n }\r\n end\r\nend\r\n\r\n---@param difficulty string\r\nlocal clickFun= function (difficulty)\r\n local chaos_bag = getObjectsWithTag(tags.bag)[1]\r\n\r\n emptyBag(chaos_bag)\r\n\r\n local loading = tokens[difficulty]\r\n local pos = self:getPosition()\r\n\r\n for _, token_id in ipairs(loading) do\r\n if type(token_id)==\"string\" then token_id = token_id:lower() end\r\n\r\n local token = sources[token_id]\r\n\r\n if (token==nil) then\r\n error(\"Could not find token \\\"\" .. token_id .. \"\\\".\")\r\n return\r\n end\r\n\r\n SpawnToken(token, pos, chaos_bag)\r\n end\r\nend\r\n\r\n\r\n---@param difficulty string\r\nlocal MakeClickFun = function(difficulty)\r\n return function ()\r\n clickFun(difficulty)\r\n end\r\nend\r\n\r\n---@param label string\r\n---@param z_offset number|nil\r\nlocal makeButton = function(label , z_offset)\r\n z_offset = z_offset or -0.15\r\n\r\n _G[label:lower() .. \"Click\"] = MakeClickFun(label)\r\n\r\n self:createButton({\r\n label = label,\r\n function_owner = self,\r\n click_function = label:lower() .. \"Click\",\r\n position = {0, 0.1, z_offset},\r\n rotation = {0, 0, 0},\r\n scale = {0.47, 1, 0.47},\r\n height = 200,\r\n width = 1150,\r\n font_size = 100,\r\n color = {0.87, 0.8, 0.70},\r\n font_color = {0, 0, 0}\r\n })\r\n return z_offset + 0.20\r\nend\r\n\r\n---@param source TTSObject\r\nlocal CreateButtons= function(source)\r\n self:clearButtons()\r\n\r\n local z_offset\r\n for difficulty,_ in pairs(tokens) do\r\n z_offset = makeButton(difficulty, z_offset)\r\n end\r\nend\r\n\r\n\r\nfunction LoadTokens()\r\n ---@type TTSObject[]\r\n local image_sources = getObjectsWithTag(tags.tokens)\r\n\r\n if (#image_sources<=0) then\r\n error(\"Cannot find images_sources\")\r\n return\r\n end\r\n\r\n sources = image_sources[1]:getTable(\"sources\")\r\n\r\n if (tokens~=nil) then CreateButtons() return end\r\n\r\n local source = getObjectsWithTag(tags.provider)\r\n\r\n if (#source<=0) then return end\r\n\r\n LoadSource(source[1])\r\n\r\n CreateButtons()\r\nend\r\n\r\nfunction onload()\r\n Timer.create {\r\n identifier = self:getGUID(),\r\n function_name = \"LoadTokens\"\r\n }\r\nend\r\n\r\n---@param provider TTSObject\r\nfunction onObjectSpawn(provider)\r\n if (not provider:hasTag(tags.provider)) then return end\r\n\r\n LoadSource(provider)\r\n\r\n CreateButtons()\r\nend\r",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "162580",
|
|
"Name": "Checker_white",
|
|
"Transform": {
|
|
"posX": -6.38920164,
|
|
"posY": 1.7348237,
|
|
"posZ": -20.6362019,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999847,
|
|
"rotZ": 180.016846,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Token Image Provider",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"Tags": [
|
|
"token_image_provider"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-05 6:51 p.m.\r\n---\r\n\r\n---@param name string\r\n---@param image string\r\n---@return ChaosToken\r\nlocal MakeToken = function (name, image)\r\n return {\r\n name = name,\r\n image = image\r\n }\r\nend\r\n\r\nsources = {\r\n [1] = MakeToken(\"+1\", \"https://i.imgur.com/uIx8jbY.png\"),\r\n [0] = MakeToken(\"0\", \"https://i.imgur.com/btEtVfd.png\"),\r\n [-1] = MakeToken(\"-1\", \"https://i.imgur.com/w3XbrCC.png\"),\r\n [-2] = MakeToken(\"-2\", \"https://i.imgur.com/bfTg2hb.png\"),\r\n [-3] = MakeToken(\"-3\", \"https://i.imgur.com/yfs8gHq.png\"),\r\n [-4] = MakeToken(\"-4\", \"https://i.imgur.com/qrgGQRD.png\"),\r\n [-5] = MakeToken(\"-5\", \"https://i.imgur.com/3Ym1IeG.png\"),\r\n [-6] = MakeToken(\"-6\", \"https://i.imgur.com/c9qdSzS.png\"),\r\n [-7] = MakeToken(\"-7\", \"https://i.imgur.com/4WRD42n.png\"),\r\n [-8] = MakeToken(\"-8\", \"https://i.imgur.com/9t3rPTQ.png\"),\r\n [\"s\"] = MakeToken(\"Skull\", \"https://i.imgur.com/stbBxtx.png\"),\r\n [\"c\"] = MakeToken(\"Cultist\", \"https://i.imgur.com/VzhJJaH.png\"),\r\n [\"t\"] = MakeToken(\"Tablet\", \"https://i.imgur.com/1plY463.png\"),\r\n [\"e\"] = MakeToken(\"Elder Thing\", \"https://i.imgur.com/ttnspKt.png\"),\r\n [\"*\"] = MakeToken(\"Elder Sign\", \"https://i.imgur.com/nEmqjmj.png\"),\r\n [\"f\"] = MakeToken(\"Auto-fail\", \"https://i.imgur.com/lns4fhz.png\"),\r\n [\"+\"] = MakeToken(\"Bless\", \"http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/\"),\r\n [\"-\"] = MakeToken(\"Curse\", \"http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/\"),\n [\"fr\"] = MakeToken(\"Frost\", \"http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/\"),\r\n}\r\r\n",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5a7b85",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -3.95590019,
|
|
"posY": 1.59753931,
|
|
"posZ": -10.4412031,
|
|
"rotX": 359.919739,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.016836714,
|
|
"scaleX": 1.64563763,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.64563763
|
|
},
|
|
"Nickname": "Scenario card",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 274800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2748": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025156596/ECEAFDBE152461B1A746FEF6329E661378FD0EE3/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025156955/B02EB7F94DF6AF0B5B422A2B9EBF84E57D75DCAB/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "14b5db",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -30.2242,
|
|
"posY": 1.6394304,
|
|
"posZ": 7.57,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ruined Cathedral",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 275900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2759": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025190630/AEF3246DB497F3A5B1BA5CB59C70A249BC6206C5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907272351147877/0A79BED7896F019706678314C0D5E3E0148FE04D/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "930283",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -36.7733,
|
|
"posY": 1.644075,
|
|
"posZ": -7.700001,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Church",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 275300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2753": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025184594/E3E15E67973F4E0416E0ADA65A6BBFE511481048/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025184883/B872AA14186130A30806D27977B2F07BCE362E8C/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "15cbab",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -33.7068,
|
|
"posY": 1.62840474,
|
|
"posZ": -0.177600279,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0168676674,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"2": {
|
|
"GUID": "44b0c5",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -39.7933121,
|
|
"posY": 1.63758957,
|
|
"posZ": 2.038383,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9961,
|
|
"rotZ": 0.0168742146,
|
|
"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.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"3": {
|
|
"GUID": "5b38c6",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -38.8217163,
|
|
"posY": 1.99356019,
|
|
"posZ": 0.4159239,
|
|
"rotX": 359.9201,
|
|
"rotY": 272.9828,
|
|
"rotZ": 0.01687373,
|
|
"scaleX": 0.8,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.8
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.6045295,
|
|
"g": 0.6045295,
|
|
"b": 0.6045295
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
|
|
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "12a3b2",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -30.224,
|
|
"posY": 1.63494241,
|
|
"posZ": -7.7002,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Waystone",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 276000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2760": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025191523/DB7486982A37289DF865DD72BD6B0CFE0E7D1DFC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025191999/6423AAC21E77E651CD42E95D7CF994D73A236AAF/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "297f5e",
|
|
"Name": "Checker_black",
|
|
"Transform": {
|
|
"posX": -5.44460058,
|
|
"posY": 1.73401284,
|
|
"posZ": -18.9178047,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0124,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Token List",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.0,
|
|
"g": 0.0,
|
|
"b": 0.0
|
|
},
|
|
"Tags": [
|
|
"mlc_memory_object",
|
|
"token_list_provider"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"LuaScript": "---\r\n--- Generated by EmmyLua(https://github.com/EmmyLua)\r\n--- Created by Whimsical.\r\n--- DateTime: 2021-08-05 7:19 p.m.\r\n---\r\n\r\nchaos_tokens = {\r\n Easy = {1, 1, 0, 0, 0, -1, -1, -1, -2, -2, -3, \"S\", \"C\", \"T\", \"E\", \"F\", \"*\"},\r\n Standard = {1, 0, 0, -1, -1, -1, -2, -2, -3, -4, \"S\", \"S\", \"C\", \"T\", \"E\", \"F\", \"*\"},\r\n Hard = {0, 0, -1, -1, -2, -2, -3, -4, -5, \"S\", \"S\", \"C\", \"C\", \"T\", \"E\", \"F\", \"*\"},\r\n Expert = {0, -1, -2, -3, -4, -5, -6, -8, \"S\", \"S\", \"S\", \"C\", \"C\", \"T\", \"E\", \"F\", \"*\"}\r\n}\r\n",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d54c36",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -23.6765,
|
|
"posY": 1.62806654,
|
|
"posZ": -0.0299998876,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.9999,
|
|
"rotZ": 180.01683,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pilgrim's Path",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 275800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2758": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025189886/90C8597912B0AEB817683508AA34E4A914A31AAB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1827907272351147145/4D1ACF9B4D065C46EF9406A988AD09496F962E9D/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bca4a0",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.68852687,
|
|
"posY": 1.61911654,
|
|
"posZ": -5.048596,
|
|
"rotX": 359.919739,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.01683721,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
274300,
|
|
278100,
|
|
274900
|
|
],
|
|
"CustomDeck": {
|
|
"2743": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025151058/E6391376F0FB221CA7B5D79B03E1B2191552B688/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025151529/306DA95F2C61C41926A5285598E1A7D188DB0555/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2781": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025152318/00C935F499007968C1F7795B399627B4C0298469/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823407745369684557/D04CC2780830062BB22FE5327B49BABD9D6340AC/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2749": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025157472/F2A1C2332D874E22A5BBB461F4AA699193F2DDAF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824530839128419394/4E96F6B636EFFD9F0A165ED8CFB6AEE61ADC815F/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "dd3538",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -2.68852615,
|
|
"posY": 1.59734869,
|
|
"posZ": -5.04856634,
|
|
"rotX": 359.919739,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168362483,
|
|
"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": 274300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2743": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025151058/E6391376F0FB221CA7B5D79B03E1B2191552B688/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025151529/306DA95F2C61C41926A5285598E1A7D188DB0555/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c1b6ba",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -2.6885643,
|
|
"posY": 1.62838256,
|
|
"posZ": -5.04851961,
|
|
"rotX": 359.91983,
|
|
"rotY": 269.999847,
|
|
"rotZ": 0.0168369543,
|
|
"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": 278100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2781": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025152318/00C935F499007968C1F7795B399627B4C0298469/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823407745369684557/D04CC2780830062BB22FE5327B49BABD9D6340AC/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d8494f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -2.688565,
|
|
"posY": 1.66236544,
|
|
"posZ": -5.04852,
|
|
"rotX": 359.9198,
|
|
"rotY": 269.999878,
|
|
"rotZ": 0.0168370809,
|
|
"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": 274900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2749": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824532753025157472/F2A1C2332D874E22A5BBB461F4AA699193F2DDAF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1824530839128419394/4E96F6B636EFFD9F0A165ED8CFB6AEE61ADC815F/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "f514f5",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -10.4502048,
|
|
"posY": 1.69827044,
|
|
"posZ": 14.5899019,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0004,
|
|
"rotZ": 180.016846,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Undead Horde",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 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": [
|
|
267600,
|
|
267600,
|
|
267200,
|
|
267400,
|
|
277900,
|
|
267400,
|
|
267800,
|
|
267400,
|
|
267300,
|
|
267200,
|
|
267700,
|
|
267400,
|
|
267700,
|
|
277900,
|
|
267800,
|
|
267400
|
|
],
|
|
"CustomDeck": {
|
|
"2676": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130909393/816DC9C08A34A3FB3447936809ED32FD658F36D0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825711735/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2672": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130906519/76E4F4E9F803FC3731ABE71B898617562EA43816/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825708030/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2674": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130908013/4C9C022C4E45D1680C018CC71B4D4BB560968167/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825709713/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2779": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1823407745369681043/5D455E5860BFD05DD6A306D7BA4289EFECEA69B1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825710606/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2678": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130916245/2C1459C00AB2D5A521D2E6A7D57ADAAF0B6934EF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825703118/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2673": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130907174/86CA6CD955B935DC3DDB4869F643629FFB47F835/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825708845/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2677": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130909918/1DAAF677537DA4579FB521207332784739620A5A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825712582/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "bc4b1b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 33.8628769,
|
|
"posY": 1.29784751,
|
|
"posZ": 80.94868,
|
|
"rotX": 0.02080835,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.01677144,
|
|
"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": 267600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2676": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130909393/816DC9C08A34A3FB3447936809ED32FD658F36D0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825711735/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4276f5",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 33.8628769,
|
|
"posY": 1.33555973,
|
|
"posZ": 80.9486847,
|
|
"rotX": 0.0208083987,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.016771581,
|
|
"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": 267600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2676": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130909393/816DC9C08A34A3FB3447936809ED32FD658F36D0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825711735/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "48641e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 49.5628548,
|
|
"posY": 1.3035506,
|
|
"posZ": 80.95279,
|
|
"rotX": 0.02080834,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.016771175,
|
|
"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": 267200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2672": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130906519/76E4F4E9F803FC3731ABE71B898617562EA43816/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825708030/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b7f1b1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602127,
|
|
"posY": 1.29975188,
|
|
"posZ": 78.6487,
|
|
"rotX": 0.0208079964,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.01677087,
|
|
"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": 267400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2674": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130908013/4C9C022C4E45D1680C018CC71B4D4BB560968167/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825709713/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e1beca",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 8.849701,
|
|
"posY": 2.48871827,
|
|
"posZ": -25.1164932,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0168720838,
|
|
"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": 277900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2779": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1823407745369681043/5D455E5860BFD05DD6A306D7BA4289EFECEA69B1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825710606/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d9e573",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602165,
|
|
"posY": 1.29907858,
|
|
"posZ": 76.3486938,
|
|
"rotX": 0.0208079088,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.0167710036,
|
|
"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": 267400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2674": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130908013/4C9C022C4E45D1680C018CC71B4D4BB560968167/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825709713/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "afe92b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2285728,
|
|
"posY": 1.30487847,
|
|
"posZ": 80.94123,
|
|
"rotX": 0.0208083615,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.0167707745,
|
|
"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": 267800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2678": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130916245/2C1459C00AB2D5A521D2E6A7D57ADAAF0B6934EF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825703118/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b7cd61",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.9602165,
|
|
"posY": 1.29840541,
|
|
"posZ": 74.0487,
|
|
"rotX": 0.0208079126,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.0167710241,
|
|
"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": 267400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2674": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130908013/4C9C022C4E45D1680C018CC71B4D4BB560968167/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825709713/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a3ec51",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.960228,
|
|
"posY": 1.391287,
|
|
"posZ": 71.7486954,
|
|
"rotX": 0.0208046623,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.01678908,
|
|
"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": 267300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2673": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130907174/86CA6CD955B935DC3DDB4869F643629FFB47F835/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825708845/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "79ccd6",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 49.5628662,
|
|
"posY": 1.33428371,
|
|
"posZ": 80.95279,
|
|
"rotX": 0.0208036136,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167881083,
|
|
"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": 267200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2672": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130906519/76E4F4E9F803FC3731ABE71B898617562EA43816/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825708030/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c348f2",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 30.3081818,
|
|
"posY": 1.29655659,
|
|
"posZ": 80.94871,
|
|
"rotX": 0.0208084546,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.0167712457,
|
|
"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": 267700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2677": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130909918/1DAAF677537DA4579FB521207332784739620A5A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825712582/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "abad40",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.96022,
|
|
"posY": 1.29773211,
|
|
"posZ": 71.7486954,
|
|
"rotX": 0.0208079442,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.0167709589,
|
|
"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": 267400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2674": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130908013/4C9C022C4E45D1680C018CC71B4D4BB560968167/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825709713/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "67b7db",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 30.3081913,
|
|
"posY": 1.32731032,
|
|
"posZ": 80.9487,
|
|
"rotX": 0.02080375,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.01678806,
|
|
"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": 267700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2677": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130909918/1DAAF677537DA4579FB521207332784739620A5A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825712582/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "527dc9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -5.91548,
|
|
"posY": 2.76062632,
|
|
"posZ": -21.12347,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.016873708,
|
|
"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": 277900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2779": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1823407745369681043/5D455E5860BFD05DD6A306D7BA4289EFECEA69B1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825710606/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b508a9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 53.2285843,
|
|
"posY": 1.335631,
|
|
"posZ": 80.94123,
|
|
"rotX": 0.0208034962,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167877339,
|
|
"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": 267800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2678": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130916245/2C1459C00AB2D5A521D2E6A7D57ADAAF0B6934EF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825703118/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a25332",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 40.96022,
|
|
"posY": 1.300425,
|
|
"posZ": 80.9487,
|
|
"rotX": 0.0208082,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.0167711,
|
|
"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": 267400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2674": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824530631130908013/4C9C022C4E45D1680C018CC71B4D4BB560968167/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1823401939825709713/A6AC6D4266989674C7DEA739AE030766788316C3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"AttachedDecals": [
|
|
{
|
|
"Transform": {
|
|
"posX": -0.0021877822,
|
|
"posY": -0.08963572,
|
|
"posZ": -0.00288731651,
|
|
"rotX": 270.0,
|
|
"rotY": 359.869568,
|
|
"rotZ": 0.0,
|
|
"scaleX": 2.00000215,
|
|
"scaleY": 2.00000238,
|
|
"scaleZ": 2.00000262
|
|
},
|
|
"CustomDecal": {
|
|
"Name": "dunwich_back",
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
|
|
"Size": 7.4
|
|
}
|
|
}
|
|
]
|
|
}
|