5807 lines
196 KiB
JSON
5807 lines
196 KiB
JSON
{
|
|
"GUID": "3b81fc",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": -43.0403633,
|
|
"posY": 1.296544,
|
|
"posZ": -46.6131859,
|
|
"rotX": 0.0209295116,
|
|
"rotY": 269.5856,
|
|
"rotZ": 0.0166201666,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Lola Hayes Rework",
|
|
"Description": "By Mint Tea Fan",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895663371/D5D8A1205E220C2ED2D0CA50705FBADE82C053BF/",
|
|
"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\":{\"019d9e\":{\"lock\":false,\"pos\":{\"x\":3.92140436172485,\"y\":1.32441914081573,\"z\":-56.127498626709},\"rot\":{\"x\":0.0208086241036654,\"y\":269.999938964844,\"z\":0.0167712103575468}},\"01a7a5\":{\"lock\":false,\"pos\":{\"x\":3.91159868240356,\"y\":1.32307767868042,\"z\":-60.6982879638672},\"rot\":{\"x\":0.0208087172359228,\"y\":269.999237060547,\"z\":0.0167708788067102}},\"04433a\":{\"lock\":false,\"pos\":{\"x\":3.91359901428223,\"y\":1.32242023944855,\"z\":-62.9467010498047},\"rot\":{\"x\":0.0208111461251974,\"y\":269.990447998047,\"z\":0.016767643392086}},\"08377f\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.29663550853729,\"z\":-54.9671783447266},\"rot\":{\"x\":0.0208040289580822,\"y\":270.015258789063,\"z\":0.0167765878140926}},\"092130\":{\"lock\":false,\"pos\":{\"x\":20.0669174194336,\"y\":1.28966176509857,\"z\":-70.3879547119141},\"rot\":{\"x\":0.0208053421229124,\"y\":270.010559082031,\"z\":0.0167750436812639}},\"0b0905\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.29989576339722,\"z\":-51.0611038208008},\"rot\":{\"x\":0.020814960822463,\"y\":269.978942871094,\"z\":0.0167634170502424}},\"1610e2\":{\"lock\":false,\"pos\":{\"x\":0.80540007352829,\"y\":1.32463753223419,\"z\":-51.5153007507324},\"rot\":{\"x\":0.0208076592534781,\"y\":270.003326416016,\"z\":0.0167723167687655}},\"1da0bd\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29809892177582,\"z\":-52.3765258789063},\"rot\":{\"x\":0.0208089668303728,\"y\":269.999755859375,\"z\":0.0167711842805147}},\"1dae6f\":{\"lock\":false,\"pos\":{\"x\":16.9045181274414,\"y\":1.28851318359375,\"z\":-70.3879547119141},\"rot\":{\"x\":0.0208083521574736,\"y\":270.000183105469,\"z\":0.0167712047696114}},\"201fbe\":{\"lock\":false,\"pos\":{\"x\":26.8402519226074,\"y\":1.29891097545624,\"z\":-47.1935005187988},\"rot\":{\"x\":0.0208150669932365,\"y\":269.979064941406,\"z\":0.0167634598910809}},\"20afe9\":{\"lock\":false,\"pos\":{\"x\":10.4299964904785,\"y\":1.32745599746704,\"z\":-53.8278999328613},\"rot\":{\"x\":0.0208124592900276,\"y\":269.986633300781,\"z\":0.0167665015906096}},\"267353\":{\"lock\":false,\"pos\":{\"x\":26.8577270507813,\"y\":1.29627370834351,\"z\":-56.2250061035156},\"rot\":{\"x\":0.0208085533231497,\"y\":270.003143310547,\"z\":0.0167724750936031}},\"277df0\":{\"lock\":false,\"pos\":{\"x\":31.3143997192383,\"y\":1.34831249713898,\"z\":-76.6369018554688},\"rot\":{\"x\":359.979187011719,\"y\":90,\"z\":359.983215332031}},\"28fa8c\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.29701471328735,\"z\":-53.6715660095215},\"rot\":{\"x\":0.0208039302378893,\"y\":270.016815185547,\"z\":0.0167771484702826}},\"2af612\":{\"lock\":false,\"pos\":{\"x\":32.5227279663086,\"y\":1.29066693782806,\"z\":-82.408088684082},\"rot\":{\"x\":0.0208137892186642,\"y\":269.982452392578,\"z\":0.0167644675821066}},\"2c10a3\":{\"lock\":false,\"pos\":{\"x\":7.19640016555786,\"y\":1.32562005519867,\"z\":-56.0881004333496},\"rot\":{\"x\":0.0208085477352142,\"y\":270.000122070313,\"z\":0.0167710706591606}},\"2cad41\":{\"lock\":false,\"pos\":{\"x\":3.94159841537476,\"y\":1.32711923122406,\"z\":-46.9281005859375},\"rot\":{\"x\":0.0208085142076015,\"y\":270.000030517578,\"z\":0.0167710427194834}},\"2e8dc6\":{\"lock\":false,\"pos\":{\"x\":13.6491117477417,\"y\":1.32728123664856,\"z\":-58.4188995361328},\"rot\":{\"x\":0.0208082180470228,\"y\":270.000823974609,\"z\":0.0167720895260572}},\"2ec821\":{\"lock\":false,\"pos\":{\"x\":16.9171943664551,\"y\":1.29402875900269,\"z\":-51.5610733032227},\"rot\":{\"x\":0.0208085905760527,\"y\":270.000091552734,\"z\":0.0167714469134808}},\"354f96\":{\"lock\":false,\"pos\":{\"x\":16.9165992736816,\"y\":1.29269909858704,\"z\":-56.1026000976563},\"rot\":{\"x\":0.0208092220127583,\"y\":269.998504638672,\"z\":0.016770526766777}},\"372afe\":{\"lock\":false,\"pos\":{\"x\":30.7249565124512,\"y\":1.29994642734528,\"z\":-48.4757537841797},\"rot\":{\"x\":0.0208042897284031,\"y\":270.014526367188,\"z\":0.0167763214558363}},\"3d460f\":{\"lock\":false,\"pos\":{\"x\":16.9165992736816,\"y\":1.29202950000763,\"z\":-58.3900985717773},\"rot\":{\"x\":0.0208089109510183,\"y\":269.998596191406,\"z\":0.0167707242071629}},\"3fc00d\":{\"lock\":false,\"pos\":{\"x\":30.724967956543,\"y\":1.29805028438568,\"z\":-54.9538269042969},\"rot\":{\"x\":0.0208141542971134,\"y\":269.98046875,\"z\":0.016763960942626}},\"457038\":{\"lock\":false,\"pos\":{\"x\":9.8939,\"y\":1.3046,\"z\":-84.7891},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"46aed1\":{\"lock\":false,\"pos\":{\"x\":7.19506025314331,\"y\":1.3242734670639,\"z\":-60.686767578125},\"rot\":{\"x\":0.0208175648003817,\"y\":269.969879150391,\"z\":0.0167602878063917}},\"4e3ae1\":{\"lock\":false,\"pos\":{\"x\":30.732702255249,\"y\":1.29768180847168,\"z\":-56.2220039367676},\"rot\":{\"x\":0.0208154134452343,\"y\":269.979309082031,\"z\":0.016763849183917}},\"4f6abf\":{\"lock\":false,\"pos\":{\"x\":10.4300012588501,\"y\":1.32812559604645,\"z\":-51.5404014587402},\"rot\":{\"x\":0.0208124294877052,\"y\":269.986633300781,\"z\":0.0167664848268032}},\"50de30\":{\"lock\":false,\"pos\":{\"x\":16.9101371765137,\"y\":1.29136085510254,\"z\":-60.6665916442871},\"rot\":{\"x\":0.0208124835044146,\"y\":269.986663818359,\"z\":0.0167663432657719}},\"538240\":{\"lock\":false,\"pos\":{\"x\":7.19640016555786,\"y\":1.32628965377808,\"z\":-53.8004989624023},\"rot\":{\"x\":0.0208130516111851,\"y\":269.984344482422,\"z\":0.0167655516415834}},\"539944\":{\"lock\":false,\"pos\":{\"x\":0.805399954319,\"y\":1.3253071308136,\"z\":-49.2277984619141},\"rot\":{\"x\":0.0208076443523169,\"y\":270.003326416016,\"z\":0.0167723558843136}},\"53cd6f\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.30103349685669,\"z\":-47.1742553710938},\"rot\":{\"x\":0.0208085607737303,\"y\":269.999938964844,\"z\":0.0167712345719337}},\"567067\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29668068885803,\"z\":-52.3944778442383},\"rot\":{\"x\":0.0208136718720198,\"y\":269.983703613281,\"z\":0.016765246167779}},\"5887cc\":{\"lock\":false,\"pos\":{\"x\":10.4300003051758,\"y\":1.32678639888763,\"z\":-56.1153984069824},\"rot\":{\"x\":0.0208131149411201,\"y\":269.984985351563,\"z\":0.0167656149715185}},\"59a93c\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.29875802993774,\"z\":-54.9479560852051},\"rot\":{\"x\":0.0208093468099833,\"y\":269.998657226563,\"z\":0.016770675778389}},\"5c93be\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.2973940372467,\"z\":-52.3759536743164},\"rot\":{\"x\":0.0208146534860134,\"y\":269.979309082031,\"z\":0.0167635530233383}},\"5cf33e\":{\"lock\":false,\"pos\":{\"x\":22.9711456298828,\"y\":1.29711759090424,\"z\":-48.5198287963867},\"rot\":{\"x\":0.0208153817802668,\"y\":269.979431152344,\"z\":0.0167637132108212}},\"5eed1b\":{\"lock\":false,\"pos\":{\"x\":13.6441535949707,\"y\":1.32661664485931,\"z\":-60.683422088623},\"rot\":{\"x\":0.0208078343421221,\"y\":270.001647949219,\"z\":0.0167719144374132}},\"610887\":{\"lock\":false,\"pos\":{\"x\":3.94160199165344,\"y\":1.32578003406525,\"z\":-51.503101348877},\"rot\":{\"x\":0.020808532834053,\"y\":270.000030517578,\"z\":0.0167709905654192}},\"61f8a6\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29592216014862,\"z\":-54.9857063293457},\"rot\":{\"x\":0.020809119567275,\"y\":269.999755859375,\"z\":0.0167707949876785}},\"66e42b\":{\"lock\":false,\"pos\":{\"x\":32.6701850891113,\"y\":1.2983855009079,\"z\":-56.2220077514648},\"rot\":{\"x\":0.0208164118230343,\"y\":269.979187011719,\"z\":0.0167614296078682}},\"6930e1\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.30065429210663,\"z\":-48.4698715209961},\"rot\":{\"x\":0.0208149738609791,\"y\":269.978820800781,\"z\":0.0167630799114704}},\"6eae6f\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.2978184223175,\"z\":-48.5076332092285},\"rot\":{\"x\":0.0208147242665291,\"y\":269.979156494141,\"z\":0.0167633779346943}},\"702b7f\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29847812652588,\"z\":-51.0809097290039},\"rot\":{\"x\":0.0208146013319492,\"y\":269.979949951172,\"z\":0.0167636647820473}},\"728070\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29771959781647,\"z\":-53.6721382141113},\"rot\":{\"x\":0.0208139438182116,\"y\":269.981689453125,\"z\":0.0167642738670111}},\"747a1a\":{\"lock\":false,\"pos\":{\"x\":13.6926002502441,\"y\":1.32997536659241,\"z\":-49.268798828125},\"rot\":{\"x\":0.0208125244826078,\"y\":269.985687255859,\"z\":0.0167662650346756}},\"7b8100\":{\"lock\":false,\"pos\":{\"x\":28.7816028594971,\"y\":1.29734039306641,\"z\":-54.9677543640137},\"rot\":{\"x\":0.0208123810589314,\"y\":269.988464355469,\"z\":0.0167666897177696}},\"83355d\":{\"lock\":false,\"pos\":{\"x\":3.92138934135437,\"y\":1.32374942302704,\"z\":-58.4151992797852},\"rot\":{\"x\":0.0208090618252754,\"y\":269.998565673828,\"z\":0.016770638525486}},\"8504ab\":{\"lock\":false,\"pos\":{\"x\":10.4300098419189,\"y\":1.32611680030823,\"z\":-58.4029006958008},\"rot\":{\"x\":0.0208084844052792,\"y\":270.000610351563,\"z\":0.0167714990675449}},\"865252\":{\"lock\":false,\"pos\":{\"x\":7.19640064239502,\"y\":1.32695925235748,\"z\":-51.512996673584},\"rot\":{\"x\":0.0208087414503098,\"y\":269.999603271484,\"z\":0.0167712774127722}},\"8bc619\":{\"lock\":false,\"pos\":{\"x\":3.94160175323486,\"y\":1.32644963264465,\"z\":-49.2155990600586},\"rot\":{\"x\":0.0208086743950844,\"y\":269.999938964844,\"z\":0.0167715176939964}},\"8dd1fd\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29885733127594,\"z\":-49.7852935791016},\"rot\":{\"x\":0.0208091344684362,\"y\":269.999725341797,\"z\":0.0167707242071629}},\"8deccc\":{\"lock\":false,\"pos\":{\"x\":20.0669212341309,\"y\":1.28899216651917,\"z\":-72.6754608154297},\"rot\":{\"x\":0.0208084657788277,\"y\":269.999938964844,\"z\":0.01677106320858}},\"8f0604\":{\"lock\":false,\"pos\":{\"x\":7.19640016555786,\"y\":1.32495045661926,\"z\":-58.3755989074707},\"rot\":{\"x\":0.0208089333027601,\"y\":269.998352050781,\"z\":0.0167706366628408}},\"93db19\":{\"lock\":false,\"pos\":{\"x\":16.9171943664551,\"y\":1.29469835758209,\"z\":-49.2735748291016},\"rot\":{\"x\":0.0208091661334038,\"y\":269.998504638672,\"z\":0.0167706552892923}},\"94d024\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.29815244674683,\"z\":-49.784725189209},\"rot\":{\"x\":0.0208147075027227,\"y\":269.978881835938,\"z\":0.0167633537203074}},\"96dc11\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29630148410797,\"z\":-53.6900901794434},\"rot\":{\"x\":0.0208087246865034,\"y\":269.999603271484,\"z\":0.0167706422507763}},\"97cea6\":{\"lock\":false,\"pos\":{\"x\":16.9165992736816,\"y\":1.29336869716644,\"z\":-53.8151016235352},\"rot\":{\"x\":0.0208125412464142,\"y\":269.985687255859,\"z\":0.0167660545557737}},\"9ab998\":{\"lock\":false,\"pos\":{\"x\":28.7952156066895,\"y\":1.29697644710541,\"z\":-56.2279357910156},\"rot\":{\"x\":0.020817743614316,\"y\":269.972412109375,\"z\":0.0167611576616764}},\"9bff41\":{\"lock\":false,\"pos\":{\"x\":7.19640016555786,\"y\":1.3282984495163,\"z\":-46.9379997253418},\"rot\":{\"x\":0.0208084564656019,\"y\":270.000122070313,\"z\":0.0167712401598692}},\"9cc9af\":{\"lock\":false,\"pos\":{\"x\":0.805400013923645,\"y\":1.32396793365479,\"z\":-53.8028984069824},\"rot\":{\"x\":0.020807733759284,\"y\":270.003326416016,\"z\":0.0167724657803774}},\"a05b8d\":{\"lock\":false,\"pos\":{\"x\":16.4209995269775,\"y\":1.3429182767868,\"z\":-76.586799621582},\"rot\":{\"x\":359.979187011719,\"y\":90,\"z\":359.983215332031}},\"a10a31\":{\"lock\":false,\"pos\":{\"x\":32.6804161071777,\"y\":1.29751312732697,\"z\":-59.215015411377},\"rot\":{\"x\":0.0208155456930399,\"y\":269.981842041016,\"z\":0.0167625844478607}},\"a3752c\":{\"lock\":false,\"pos\":{\"x\":10.387900352478,\"y\":1.32476484775543,\"z\":-62.9693984985352},\"rot\":{\"x\":0.020808681845665,\"y\":269.999389648438,\"z\":0.016770713031292}},\"a55c84\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.29777324199677,\"z\":-51.0803375244141},\"rot\":{\"x\":0.020805923268199,\"y\":270.010009765625,\"z\":0.0167744476348162}},\"a5a5fd\":{\"lock\":false,\"pos\":{\"x\":30.7249565124512,\"y\":1.29956722259521,\"z\":-49.771369934082},\"rot\":{\"x\":0.0208145789802074,\"y\":269.979766845703,\"z\":0.0167636070400476}},\"a60082\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29961585998535,\"z\":-47.1940612792969},\"rot\":{\"x\":0.0208149310201406,\"y\":269.97900390625,\"z\":0.0167631097137928}},\"a967e3\":{\"lock\":false,\"pos\":{\"x\":12.1245756149292,\"y\":1.33488047122955,\"z\":-70.378303527832},\"rot\":{\"x\":0.0208136178553104,\"y\":270.000091552734,\"z\":0.016780586913228}},\"a9e612\":{\"lock\":false,\"pos\":{\"x\":16.9171943664551,\"y\":1.29536783695221,\"z\":-46.9860725402832},\"rot\":{\"x\":0.0208084676414728,\"y\":270.000244140625,\"z\":0.0167712941765785}},\"aa5286\":{\"lock\":false,\"pos\":{\"x\":13.6491041183472,\"y\":1.32795083522797,\"z\":-56.1313018798828},\"rot\":{\"x\":0.0208084750920534,\"y\":270.000213623047,\"z\":0.0167714338749647}},\"ac8f67\":{\"lock\":false,\"pos\":{\"x\":3.73846220970154,\"y\":1.32018744945526,\"z\":-70.3570785522461},\"rot\":{\"x\":0.0208128094673157,\"y\":269.985595703125,\"z\":0.0167657602578402}},\"acc4c9\":{\"lock\":false,\"pos\":{\"x\":7.16750001907349,\"y\":1.32360279560089,\"z\":-62.9438018798828},\"rot\":{\"x\":0.0208174455910921,\"y\":269.969665527344,\"z\":0.0167602431029081}},\"acc5be\":{\"lock\":false,\"pos\":{\"x\":7.40836000442505,\"y\":1.32151699066162,\"z\":-70.3684768676758},\"rot\":{\"x\":0.0208131205290556,\"y\":269.985595703125,\"z\":0.0167659465223551}},\"af1d2c\":{\"lock\":false,\"pos\":{\"x\":24.9203586578369,\"y\":1.29557001590729,\"z\":-56.2253341674805},\"rot\":{\"x\":0.0208083875477314,\"y\":270.003814697266,\"z\":0.016772897914052}},\"b102c3\":{\"lock\":false,\"pos\":{\"x\":13.6926031112671,\"y\":1.3306450843811,\"z\":-46.981201171875},\"rot\":{\"x\":0.0208124853670597,\"y\":269.98583984375,\"z\":0.016766170039773}},\"b45739\":{\"lock\":false,\"pos\":{\"x\":30.7249660491943,\"y\":1.30032575130463,\"z\":-47.1801376342773},\"rot\":{\"x\":0.0208088774234056,\"y\":270.000061035156,\"z\":0.0167707931250334}},\"b4fc98\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29819762706757,\"z\":-47.2120208740234},\"rot\":{\"x\":0.0208147577941418,\"y\":269.979248046875,\"z\":0.0167634952813387}},\"b811d0\":{\"lock\":false,\"pos\":{\"x\":0.805443644523621,\"y\":1.32597672939301,\"z\":-46.9402770996094},\"rot\":{\"x\":0.0208076387643814,\"y\":270.003326416016,\"z\":0.0167725309729576}},\"bb0dc0\":{\"lock\":false,\"pos\":{\"x\":13.6490983963013,\"y\":1.32928991317749,\"z\":-51.5563011169434},\"rot\":{\"x\":0.0208125729113817,\"y\":269.985473632813,\"z\":0.0167664997279644}},\"bb684e\":{\"lock\":false,\"pos\":{\"x\":16.90452003479,\"y\":1.28784370422363,\"z\":-72.6754608154297},\"rot\":{\"x\":0.0208063833415508,\"y\":270.007385253906,\"z\":0.0167737808078527}},\"bb9641\":{\"lock\":false,\"pos\":{\"x\":3.94159984588623,\"y\":1.32511055469513,\"z\":-53.790599822998},\"rot\":{\"x\":0.0208085346966982,\"y\":269.999969482422,\"z\":0.016771050170064}},\"be227d\":{\"lock\":false,\"pos\":{\"x\":26.8402538299561,\"y\":1.29853177070618,\"z\":-48.4891090393066},\"rot\":{\"x\":0.0208148397505283,\"y\":269.97900390625,\"z\":0.0167632717639208}},\"c04c67\":{\"lock\":false,\"pos\":{\"x\":22.9711456298828,\"y\":1.2974967956543,\"z\":-47.2242164611816},\"rot\":{\"x\":0.0208151061087847,\"y\":269.9794921875,\"z\":0.0167640075087547}},\"c5fe5b\":{\"lock\":false,\"pos\":{\"x\":30.7249565124512,\"y\":1.29918801784515,\"z\":-51.0669860839844},\"rot\":{\"x\":0.0208045765757561,\"y\":270.014007568359,\"z\":0.0167757961899042}},\"c7e3cf\":{\"lock\":false,\"pos\":{\"x\":30.7249565124512,\"y\":1.2988086938858,\"z\":-52.3625946044922},\"rot\":{\"x\":0.0208087284117937,\"y\":270.000427246094,\"z\":0.0167715139687061}},\"c95de1\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.29951655864716,\"z\":-52.3567237854004},\"rot\":{\"x\":0.0208092629909515,\"y\":269.999328613281,\"z\":0.0167707335203886}},\"d3d7fb\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.29913723468781,\"z\":-53.6523399353027},\"rot\":{\"x\":0.0208131466060877,\"y\":269.984558105469,\"z\":0.0167652778327465}},\"d4d2be\":{\"lock\":false,\"pos\":{\"x\":16.8868007659912,\"y\":1.29069018363953,\"z\":-62.9289016723633},\"rot\":{\"x\":0.0208124555647373,\"y\":269.986694335938,\"z\":0.0167663060128689}},\"d914f0\":{\"lock\":false,\"pos\":{\"x\":13.6254997253418,\"y\":1.32594740390778,\"z\":-62.9463005065918},\"rot\":{\"x\":0.0208080448210239,\"y\":270.001037597656,\"z\":0.0167718194425106}},\"d9a805\":{\"lock\":false,\"pos\":{\"x\":7.1963963508606,\"y\":1.32762885093689,\"z\":-49.2254981994629},\"rot\":{\"x\":0.0208086986094713,\"y\":269.999694824219,\"z\":0.0167712010443211}},\"dc6a2c\":{\"lock\":false,\"pos\":{\"x\":16.8998126983643,\"y\":1.28918170928955,\"z\":-68.0983200073242},\"rot\":{\"x\":0.0208083353936672,\"y\":270.000823974609,\"z\":0.0167713705450296}},\"ddccf9\":{\"lock\":false,\"pos\":{\"x\":10.4736042022705,\"y\":1.32881104946136,\"z\":-49.2528991699219},\"rot\":{\"x\":0.0208082124590874,\"y\":270.001403808594,\"z\":0.0167717784643173}},\"e0bf2d\":{\"lock\":false,\"pos\":{\"x\":10.4073514938354,\"y\":1.32543790340424,\"z\":-60.6943244934082},\"rot\":{\"x\":0.0208086241036654,\"y\":269.999328613281,\"z\":0.0167709402740002}},\"e26ddc\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29705989360809,\"z\":-51.0988616943359},\"rot\":{\"x\":0.020804088562727,\"y\":270.015869140625,\"z\":0.0167766455560923}},\"e4377f\":{\"lock\":false,\"pos\":{\"x\":10.4736042022705,\"y\":1.32948064804077,\"z\":-46.9654006958008},\"rot\":{\"x\":0.0208080131560564,\"y\":270.001159667969,\"z\":0.0167716033756733}},\"e86c65\":{\"lock\":false,\"pos\":{\"x\":13.6491041183472,\"y\":1.32862043380737,\"z\":-53.8437995910645},\"rot\":{\"x\":0.0208083018660545,\"y\":270.000183105469,\"z\":0.0167718604207039}},\"ebc4d9\":{\"lock\":false,\"pos\":{\"x\":28.7816009521484,\"y\":1.29923665523529,\"z\":-48.4896774291992},\"rot\":{\"x\":0.0208100229501724,\"y\":269.996398925781,\"z\":0.0167694911360741}},\"ef116e\":{\"lock\":false,\"pos\":{\"x\":30.7249565124512,\"y\":1.29842948913574,\"z\":-53.6582107543945},\"rot\":{\"x\":0.0208146367222071,\"y\":269.979614257813,\"z\":0.0167634822428226}},\"f317ac\":{\"lock\":false,\"pos\":{\"x\":32.6690406799316,\"y\":1.30027496814728,\"z\":-49.7654914855957},\"rot\":{\"x\":0.0208088103681803,\"y\":269.999816894531,\"z\":0.0167712401598692}},\"fa142f\":{\"lock\":false,\"pos\":{\"x\":24.8910350799561,\"y\":1.29743921756744,\"z\":-49.8032493591309},\"rot\":{\"x\":0.020805774256587,\"y\":270.010162353516,\"z\":0.0167744141072035}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "457038",
|
|
"Name": "Custom_PDF",
|
|
"Transform": {
|
|
"posX": 9.893872,
|
|
"posY": 1.3045938,
|
|
"posZ": -84.78914,
|
|
"rotX": 0.0208085477,
|
|
"rotY": 269.9995,
|
|
"rotZ": 0.01677102,
|
|
"scaleX": 4.040626,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 4.040626
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomPDF": {
|
|
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1865048991160398081/441E07886CB8F3A2C4492D85E155E110B14DBC8E/",
|
|
"PDFPassword": "",
|
|
"PDFPage": 0,
|
|
"PDFPageOffset": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5cf33e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 22.9711456,
|
|
"posY": 1.29711759,
|
|
"posZ": -48.51983,
|
|
"rotX": 0.0208146889,
|
|
"rotY": 269.979431,
|
|
"rotZ": 0.0167635381,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Celestial Synergy",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 621600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6216": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160368951/597D4A0B220C83C3A8165E28B932EA7A1EA89533/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160369301/0DD996A44D65C836172CBCEC5738CECAE6863A09/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "af1d2c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 24.9203587,
|
|
"posY": 1.29557,
|
|
"posZ": -56.2253342,
|
|
"rotX": 0.0208075754,
|
|
"rotY": 270.003845,
|
|
"rotZ": 0.01677215,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Christine Daaé",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 622100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6221": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160381122/A0C9A62DA44A333D1164E5231442E6FA492B80D1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160381526/05356EFB440B219F950CEA2C6BAF2AF591BC8683/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "267353",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 26.8577271,
|
|
"posY": 1.29627371,
|
|
"posZ": -56.2250061,
|
|
"rotX": 0.0208077487,
|
|
"rotY": 270.003143,
|
|
"rotZ": 0.0167722944,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Marie Laveau",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 622000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6220": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160380227/49D508AF32CB8F7C795F2893CD6D0321A8486ADD/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160380582/7A41392F429C482EA18F1711200CBD5EAB861FB0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9ab998",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 28.7952156,
|
|
"posY": 1.29697645,
|
|
"posZ": -56.2279358,
|
|
"rotX": 0.02081698,
|
|
"rotY": 269.9724,
|
|
"rotZ": 0.0167611875,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Titania",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 621900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6219": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160379033/F673BFA470C48B9564E3420FA97A822C1F356BC6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160379382/69E9D48BD7B9FEA6A9326939CFC57B64E894CAB0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4e3ae1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 30.7327023,
|
|
"posY": 1.29768181,
|
|
"posZ": -56.2220039,
|
|
"rotX": 0.0208147019,
|
|
"rotY": 269.9793,
|
|
"rotZ": 0.0167632289,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Yuasa Toshiko",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 621800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6218": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160377935/3EDB2D09968631C7FB64E14D7B12A5D45AF3ED9D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160378234/A65B5D822B3738DF912098A38D41AD790BD23D33/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "66e42b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.6701851,
|
|
"posY": 1.2983855,
|
|
"posZ": -56.2220078,
|
|
"rotX": 0.0208147112,
|
|
"rotY": 269.9792,
|
|
"rotZ": 0.0167635959,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Werethekau",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 621700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6217": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160376773/704F05260A7175A83C1E734F6AD6E839E91C353C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160377077/576BE2A7187623093A9BF629B3DFE929B0C80B68/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "019d9e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 3.92140317,
|
|
"posY": 1.32441914,
|
|
"posZ": -56.1275,
|
|
"rotX": 0.0208085086,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01677138,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Psyche",
|
|
"Description": "The Resilient",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6215": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160174132/A6BA3573C91F26717F659DAD84843D62CBDA61B6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "01a7a5",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 3.91159964,
|
|
"posY": 1.32307768,
|
|
"posZ": -60.698288,
|
|
"rotX": 0.0208085775,
|
|
"rotY": 269.9992,
|
|
"rotZ": 0.016770808,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Idunn",
|
|
"Description": "The Rejuvenator",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 610900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6109": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931874995317/4406F9E5D4FD1F5FB04030D3B13D6C0AA36A8F57/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "04433a",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 3.9136,
|
|
"posY": 1.32242024,
|
|
"posZ": -62.9467,
|
|
"rotX": 0.0208113678,
|
|
"rotY": 269.990417,
|
|
"rotZ": 0.0167677775,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Christine Daaé",
|
|
"Description": "The Primadonna",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6200": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160124679/CEFDF7A10437287BF9C6339230629A4827F0372D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "08377f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 26.8402538,
|
|
"posY": 1.29663551,
|
|
"posZ": -54.96718,
|
|
"rotX": 0.0208044983,
|
|
"rotY": 270.015259,
|
|
"rotZ": 0.0167764165,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Morrígan",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6172": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873295218/D0F09BB49B06B8EAA94D75606384C2A673002033/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873295830/DA010E8985D2D7143337C0E5C4F3BD788EF54DE4/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "092130",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 20.0669174,
|
|
"posY": 1.28966177,
|
|
"posZ": -70.3879547,
|
|
"rotX": 0.02080532,
|
|
"rotY": 270.010559,
|
|
"rotZ": 0.0167750474,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Improvisation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6192": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824514986560063696/2F5B3DA2ED775539B44074EFD246F7068DCD0966/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0b0905",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.66904,
|
|
"posY": 1.29989576,
|
|
"posZ": -51.0611038,
|
|
"rotX": 0.02081483,
|
|
"rotY": 269.978943,
|
|
"rotZ": 0.0167635866,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Éowyn",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6156": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873265681/7C8CBC70E25BE74F5B8BB2E7AD9F2D6B43B79FB3/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873266040/B4F8D0C3515B661D3D914CC9B89D6A6A9929A86E/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1da0bd",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 28.7816,
|
|
"posY": 1.29809892,
|
|
"posZ": -52.3765259,
|
|
"rotX": 0.0208089538,
|
|
"rotY": 269.999756,
|
|
"rotZ": 0.016770551,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Lady MacBeth",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6167": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873287441/96FB4A8C9FB4B45985D5BC55644D84AD9060ADCA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873288263/A34D2CAF3D0EADFBFFF53DE5DFB57FDF6ACE40FD/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1dae6f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.9045181,
|
|
"posY": 1.28851318,
|
|
"posZ": -70.3879547,
|
|
"rotX": 0.02080845,
|
|
"rotY": 270.000183,
|
|
"rotZ": 0.01677112,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Improvisation",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6193": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1824514986560063696/2F5B3DA2ED775539B44074EFD246F7068DCD0966/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "201fbe",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 26.8402519,
|
|
"posY": 1.298911,
|
|
"posZ": -47.1935,
|
|
"rotX": 0.0208150335,
|
|
"rotY": 269.979065,
|
|
"rotZ": 0.0167632923,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Aphrodite",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6146": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873240510/3D46CEF69B02AF8E656191C5C9672EB0AAEB85DA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873241442/EC3CEC9ED0165B063367100F88756A68DCA7E10F/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "20afe9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.4299984,
|
|
"posY": 1.327456,
|
|
"posZ": -53.8279,
|
|
"rotX": 0.02081246,
|
|
"rotY": 269.986633,
|
|
"rotZ": 0.0167663358,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Kitsune",
|
|
"Description": "The Trickster",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6211": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160164826/4592D40ADB58969B5A7AD25D6D8840164BE3D5B2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "277df0",
|
|
"Name": "Notecard",
|
|
"Transform": {
|
|
"posX": 31.3144,
|
|
"posY": 1.3483125,
|
|
"posZ": -76.6369,
|
|
"rotX": 359.9792,
|
|
"rotY": 90.0,
|
|
"rotZ": 359.983215,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Method Acting Mini Investigator Cards",
|
|
"Description": "1. Copy the mini cards for your roles.\n2. Select all of them in the order you want to the states to be, ctrl+left click them in order. Then right click -> Create States\n3. Swap between the roles using numbers typed while hovering over, or right click -> State.\n4. On the right is an example object.\n",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "28fa8c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 26.8402538,
|
|
"posY": 1.29701471,
|
|
"posZ": -53.671566,
|
|
"rotX": 0.0208038818,
|
|
"rotY": 270.0168,
|
|
"rotZ": 0.0167767,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Lorelei",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6168": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873288939/40541DF90C39D6898B85A2B2C3A9E36F1ACDB423/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873289572/1311284B631F3E5AA0EB1CB1AE39BEE9AEE544F5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2af612",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.522728,
|
|
"posY": 1.29066694,
|
|
"posZ": -82.40809,
|
|
"rotX": 0.0208140463,
|
|
"rotY": 269.982452,
|
|
"rotZ": 0.0167647675,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Example Multi-State Investigator Mini",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6179": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873305481/2362394A8CE53FCDC0ED81B42FBDE5E50248E75F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873306067/431146D5D3290E78D2AA2B6676332432737D92CD/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"7": {
|
|
"GUID": "7c06da",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 48.40115,
|
|
"posY": 1.29737973,
|
|
"posZ": -79.17569,
|
|
"rotX": 0.0208082814,
|
|
"rotY": 269.999878,
|
|
"rotZ": 0.01676592,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Lady MacBeth",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6167": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873287441/96FB4A8C9FB4B45985D5BC55644D84AD9060ADCA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873288263/A34D2CAF3D0EADFBFFF53DE5DFB57FDF6ACE40FD/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"9": {
|
|
"GUID": "e27cc3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 48.40115,
|
|
"posY": 1.2966212,
|
|
"posZ": -81.7669144,
|
|
"rotX": 0.0208145976,
|
|
"rotY": 269.979065,
|
|
"rotZ": 0.0167583954,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Baba Yaga",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6149": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873249532/40D917C80018293488654126A94B0DF914E8B90E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873256362/06274F69CC59CCAAD733550E89D950447D277A00/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"10": {
|
|
"GUID": "8c8c92",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 48.4011536,
|
|
"posY": 1.296242,
|
|
"posZ": -83.06253,
|
|
"rotX": 0.0208062939,
|
|
"rotY": 270.0101,
|
|
"rotZ": 0.0167672914,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Ereshkigal",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6157": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873266724/FEBBC9CB9A26A521EFE05A30895053E684CC97E5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873267097/21A7279E102ECB1F449C1FE64FB0FB502E9C44DA/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"11": {
|
|
"GUID": "175ea3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 48.40115,
|
|
"posY": 1.29586279,
|
|
"posZ": -84.35815,
|
|
"rotX": 0.02080394,
|
|
"rotY": 270.01532,
|
|
"rotZ": 0.01677138,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Morrígan",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6172": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873295218/D0F09BB49B06B8EAA94D75606384C2A673002033/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873295830/DA010E8985D2D7143337C0E5C4F3BD788EF54DE4/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"2": {
|
|
"GUID": "5188cd",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 48.938633,
|
|
"posY": 1.29795647,
|
|
"posZ": -77.87234,
|
|
"rotX": 0.0208141766,
|
|
"rotY": 269.982178,
|
|
"rotZ": 0.01676456,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Annabel Lee",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6144": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873233095/ED4E0F5EC8215F0C3CC89E71BAA1F6C5E8E6D060/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873233540/39263FDF6551AEBAF89B4A9CF1997E2F4D561606/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"3": {
|
|
"GUID": "be9785",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 48.938633,
|
|
"posY": 1.29795647,
|
|
"posZ": -77.87234,
|
|
"rotX": 0.0208138656,
|
|
"rotY": 269.982178,
|
|
"rotZ": 0.016764516,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Artemis",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6147": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873242907/FE4A60D00F4283ABB62B64B714146F0F5AB3FA17/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873243881/1E98F0B3C959416FAE826C05E7B78455A66ED2C8/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"4": {
|
|
"GUID": "94f330",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 48.938633,
|
|
"posY": 1.29795647,
|
|
"posZ": -77.87234,
|
|
"rotX": 0.0208139922,
|
|
"rotY": 269.982178,
|
|
"rotZ": 0.01676451,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Anne Shirley",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6145": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873234493/619EC00ABC9B6992D48E85182939F1D020ED4EB4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873236027/5BFD72A30D46FD8076B4E1A2DD0B5EE97A4BCB5E/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"6": {
|
|
"GUID": "5071c2",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 48.938633,
|
|
"posY": 1.29795647,
|
|
"posZ": -77.87234,
|
|
"rotX": 0.0208139345,
|
|
"rotY": 269.982178,
|
|
"rotZ": 0.01676414,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Kitsune",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6165": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873284817/A122C170EDFF285DF888DBB743DF8329E45EE5F5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873285446/FC04FAFEFE944F7DC746B95010B0D4C130809DA2/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"8": {
|
|
"GUID": "2a0642",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 48.938633,
|
|
"posY": 1.29795647,
|
|
"posZ": -77.87234,
|
|
"rotX": 0.020813778,
|
|
"rotY": 269.982178,
|
|
"rotZ": 0.0167644285,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Mary Read",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6169": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873290379/1206EB89AE7017EAD9B7AF9E14FBE64972180AA5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873291284/C53C4BACEF3AA89B47388A5447AC5B1297742E33/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"5": {
|
|
"GUID": "bb1506",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 48.938633,
|
|
"posY": 1.29795647,
|
|
"posZ": -77.87234,
|
|
"rotX": 0.0208141338,
|
|
"rotY": 269.982178,
|
|
"rotZ": 0.0167647228,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Belle",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6151": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873258327/4B20F8BDFD53D421859DF5679A82B6C5ACF127B4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873258938/FAECC306C92504F32D651862F54618339C6DD654/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "2c10a3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 7.196402,
|
|
"posY": 1.32562,
|
|
"posZ": -56.0881,
|
|
"rotX": 0.0208086111,
|
|
"rotY": 270.000122,
|
|
"rotZ": 0.01677115,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bride of Frankenstein",
|
|
"Description": "The Monster Woman",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6213": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160168755/C663E3351A708706F0336C384AB91CB1317E735A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2cad41",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 3.94159937,
|
|
"posY": 1.32711923,
|
|
"posZ": -46.9281,
|
|
"rotX": 0.020808544,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167711023,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cinderella",
|
|
"Description": "The Maiden",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6214": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160171934/6D9E62DFDD92FDE85736015F6992F31D9CB4D500/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2e8dc6",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 13.6491137,
|
|
"posY": 1.32728124,
|
|
"posZ": -58.4189,
|
|
"rotX": 0.0208082888,
|
|
"rotY": 270.000824,
|
|
"rotZ": 0.0167716146,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Jane Eyre",
|
|
"Description": "The Rational",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6210": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160160040/8CC6BC012DAC7550582CD4BCEF2DD03A8A469B0B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2ec821",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.9171944,
|
|
"posY": 1.29402876,
|
|
"posZ": -51.5610733,
|
|
"rotX": 0.0208086036,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.0167714022,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Annabel Lee",
|
|
"Description": "The Departed",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6206": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160149237/D81DC70826222D69A5C6A3BF251DDA4510DD345E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "354f96",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.9166,
|
|
"posY": 1.2926991,
|
|
"posZ": -56.1026,
|
|
"rotX": 0.0208090562,
|
|
"rotY": 269.9985,
|
|
"rotZ": 0.0167706441,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Éowyn",
|
|
"Description": "The Shieldmaiden",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6222": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160385416/8C029562CFFFF046122C6E316929C20097681159/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "372afe",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 30.7249565,
|
|
"posY": 1.29994643,
|
|
"posZ": -48.4757538,
|
|
"rotX": 0.0208044127,
|
|
"rotY": 270.014526,
|
|
"rotZ": 0.0167759061,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Anne Shirley",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6145": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873234493/619EC00ABC9B6992D48E85182939F1D020ED4EB4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873236027/5BFD72A30D46FD8076B4E1A2DD0B5EE97A4BCB5E/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3d460f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.9166,
|
|
"posY": 1.2920295,
|
|
"posZ": -58.3901,
|
|
"rotX": 0.0208089668,
|
|
"rotY": 269.9986,
|
|
"rotZ": 0.0167706218,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sigyn",
|
|
"Description": "The Devoted",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6117": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870271475/CFE1EE8F96A32A56F19A1B25A5F8CD7F219A17D0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3fc00d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 30.724968,
|
|
"posY": 1.29805028,
|
|
"posZ": -54.9538269,
|
|
"rotX": 0.02081447,
|
|
"rotY": 269.980469,
|
|
"rotZ": 0.0167637765,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Pandora",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6173": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873296507/7DA79A31FB28061C76D7A79098F7BD069701DD05/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873297242/C4FA5D42AAA6912533A2985195F5701C1E6D0136/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "46aed1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 7.19505835,
|
|
"posY": 1.32427347,
|
|
"posZ": -60.6867676,
|
|
"rotX": 0.0208173674,
|
|
"rotY": 269.969879,
|
|
"rotZ": 0.01676009,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lorelei",
|
|
"Description": "The Siren",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 622300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6223": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160387915/FBFEF36629F35EB36AC057018057628556F5692D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4f6abf",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.4300013,
|
|
"posY": 1.3281256,
|
|
"posZ": -51.5404,
|
|
"rotX": 0.0208124239,
|
|
"rotY": 269.9867,
|
|
"rotZ": 0.0167662147,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Medusa",
|
|
"Description": "The Scorned",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 612600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6126": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870286924/57DF76BB7C855CB47F9357B8D1DA642ED31EAF51/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "50de30",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.9101372,
|
|
"posY": 1.29136086,
|
|
"posZ": -60.66659,
|
|
"rotX": 0.02081228,
|
|
"rotY": 269.986664,
|
|
"rotZ": 0.0167663861,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Kali",
|
|
"Description": "The Retributionist",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 610400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6104": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870238535/F459AA926A2142FF4226B0F3D57C34757F76D44A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "538240",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 7.19639826,
|
|
"posY": 1.32628965,
|
|
"posZ": -53.8005,
|
|
"rotX": 0.020813033,
|
|
"rotY": 269.984344,
|
|
"rotZ": 0.0167654641,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Morrígan",
|
|
"Description": "The Doombringer",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 613300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6133": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870296633/7AD23393ECFA5382690274B89F4F5A07C0F08A5D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "539944",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 0.8054,
|
|
"posY": 1.32530713,
|
|
"posZ": -49.2278,
|
|
"rotX": 0.0208075382,
|
|
"rotY": 270.003326,
|
|
"rotZ": 0.0167725328,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Celestial Synergy",
|
|
"Description": "The Night and The Moon",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6201": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160137231/B3E14C8266F2DA9AFFADB37CD93A76F0822F2DCD/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "53cd6f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.66904,
|
|
"posY": 1.3010335,
|
|
"posZ": -47.1742554,
|
|
"rotX": 0.0208087582,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01677077,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Annabel Lee",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6144": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873233095/ED4E0F5EC8215F0C3CC89E71BAA1F6C5E8E6D060/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873233540/39263FDF6551AEBAF89B4A9CF1997E2F4D561606/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "567067",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 24.8910351,
|
|
"posY": 1.29668069,
|
|
"posZ": -52.3944778,
|
|
"rotX": 0.0208136775,
|
|
"rotY": 269.9837,
|
|
"rotZ": 0.0167651866,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Persephone",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6174": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873298604/2240631FF3B7B9E19DA15E07DCDAB44EC66B2070/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873299406/317E70798AB7995CB6C2FB0F03FBE97937F0A3C6/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5887cc",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.4299984,
|
|
"posY": 1.3267864,
|
|
"posZ": -56.1154,
|
|
"rotX": 0.0208130442,
|
|
"rotY": 269.985,
|
|
"rotZ": 0.0167656559,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lady MacBeth",
|
|
"Description": "The Ambitious",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 612800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6128": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870289417/EC1B1B401F6E08A8FA91D96096FEF102A0A11450/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "59a93c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.66904,
|
|
"posY": 1.298758,
|
|
"posZ": -54.9479561,
|
|
"rotX": 0.0208092965,
|
|
"rotY": 269.998657,
|
|
"rotZ": 0.0167707168,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Sigyn",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6177": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873303043/82BE50BC3EB425B2EFA39CA1A88EE9B565E58EA1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873303681/165754F290E0DA68CE2BB1463988F04FEC999343/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5c93be",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 26.8402538,
|
|
"posY": 1.297394,
|
|
"posZ": -52.3759537,
|
|
"rotX": 0.020814782,
|
|
"rotY": 269.9793,
|
|
"rotZ": 0.0167634264,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Jorogumo",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6163": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873281198/CE8AB546F42E8BE4AAA5DC1435D22CA8C18C94A3/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873281978/04DBF1909771AB443FE441BC3299D1C3A5C92C29/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5eed1b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 13.6441555,
|
|
"posY": 1.32661664,
|
|
"posZ": -60.6834221,
|
|
"rotX": 0.0208077822,
|
|
"rotY": 270.001648,
|
|
"rotZ": 0.016772015,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fatima al-Fihri",
|
|
"Description": "The Educator",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 610500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6105": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870240068/456208C9766AC0134A0156CBA7533DF6C83D4A8E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "610887",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 3.941601,
|
|
"posY": 1.32578,
|
|
"posZ": -51.5031,
|
|
"rotX": 0.0208085757,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.01677094,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mina Harker",
|
|
"Description": "The Nurturer",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 613800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6138": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870303258/B5955AD19AD067FE43ECAB6AFB632B55BED89849/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "61f8a6",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 24.8910351,
|
|
"posY": 1.29592216,
|
|
"posZ": -54.9857063,
|
|
"rotX": 0.0208088215,
|
|
"rotY": 269.999756,
|
|
"rotZ": 0.0167710036,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Rapunzel",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6176": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873301779/0056A0DEA441C22EEB82D54FE35B2FF327874CD7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873302424/0761C3EF8AEB44DB5C56CC906CFF9595ABC78EBF/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6930e1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.66904,
|
|
"posY": 1.30065429,
|
|
"posZ": -48.46987,
|
|
"rotX": 0.02081493,
|
|
"rotY": 269.978821,
|
|
"rotZ": 0.0167629663,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Artemis",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6147": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873242907/FE4A60D00F4283ABB62B64B714146F0F5AB3FA17/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873243881/1E98F0B3C959416FAE826C05E7B78455A66ED2C8/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6eae6f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 24.8910351,
|
|
"posY": 1.29781842,
|
|
"posZ": -48.5076332,
|
|
"rotX": 0.0208146945,
|
|
"rotY": 269.979156,
|
|
"rotZ": 0.01676349,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Cinderella",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6155": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873264465/9D22F3D481602CF47D290E125A1E79663509382C/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873265034/997CD42BEB6AD7F76A0E196123DEDBC9AE774D37/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "702b7f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 28.7816,
|
|
"posY": 1.29847813,
|
|
"posZ": -51.08091,
|
|
"rotX": 0.02081459,
|
|
"rotY": 269.97995,
|
|
"rotZ": 0.016763581,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "La Llorona",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6166": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873286238/6B71715975472832069D719A2830E625ACBA6B24/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873286763/13E5142E45DDA7D3F0F1E89B6967E5874A70F3A4/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "728070",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 28.7816,
|
|
"posY": 1.2977196,
|
|
"posZ": -53.67214,
|
|
"rotX": 0.0208140388,
|
|
"rotY": 269.9817,
|
|
"rotZ": 0.01676435,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Mary Read",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6169": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873290379/1206EB89AE7017EAD9B7AF9E14FBE64972180AA5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873291284/C53C4BACEF3AA89B47388A5447AC5B1297742E33/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "747a1a",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 13.6926012,
|
|
"posY": 1.32997537,
|
|
"posZ": -49.2688,
|
|
"rotX": 0.0208126679,
|
|
"rotY": 269.985626,
|
|
"rotZ": 0.0167664122,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pandora",
|
|
"Description": "The Innocent",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 612400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6124": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931874829946/9B4909B2B694C856DF668735C332A5391913FD2B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7b8100",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 28.7816029,
|
|
"posY": 1.29734039,
|
|
"posZ": -54.9677544,
|
|
"rotX": 0.02081204,
|
|
"rotY": 269.988464,
|
|
"rotZ": 0.0167669263,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Medusa",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6170": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873292254/46AF144378093FA9C29CE45AF00A0AB8223B31A4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873292903/DA31C1071D826A9783C598D5BE5A126BD36972CC/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "83355d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 3.92138839,
|
|
"posY": 1.32374942,
|
|
"posZ": -58.4152,
|
|
"rotX": 0.02080896,
|
|
"rotY": 269.9986,
|
|
"rotZ": 0.0167706236,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Berenice",
|
|
"Description": "The Defiled",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 614100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6141": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870306448/18116B6D14681A0AB53440A46F8F7E83BD6266E5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8504ab",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.4300117,
|
|
"posY": 1.3261168,
|
|
"posZ": -58.4029,
|
|
"rotX": 0.0208084825,
|
|
"rotY": 270.0006,
|
|
"rotZ": 0.0167713333,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Carmilla",
|
|
"Description": "The Vampire",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6187": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521428943419946/3CD3B73DE38C5649FA3E56E5E0D3F0701CEBA9D7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "865252",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 7.19640064,
|
|
"posY": 1.32695925,
|
|
"posZ": -51.5129967,
|
|
"rotX": 0.0208087172,
|
|
"rotY": 269.999634,
|
|
"rotZ": 0.0167710222,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Baba Yaga",
|
|
"Description": "The Crone",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 613000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6130": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870293001/DF0468BD1AADD3CD5BB237FFF17F5EAB0D3DBB43/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8bc619",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 3.94160271,
|
|
"posY": 1.32644963,
|
|
"posZ": -49.2156,
|
|
"rotX": 0.0208084378,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01677113,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Persephone",
|
|
"Description": "The Subjugated",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6184": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521428943415068/56CB8D5849439803BFD113354DB9B504ED90BEA2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8dd1fd",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 28.7816,
|
|
"posY": 1.29885733,
|
|
"posZ": -49.7852936,
|
|
"rotX": 0.0208087843,
|
|
"rotY": 269.999725,
|
|
"rotZ": 0.0167710688,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Kitsune",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6165": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873284817/A122C170EDFF285DF888DBB743DF8329E45EE5F5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873285446/FC04FAFEFE944F7DC746B95010B0D4C130809DA2/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8deccc",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 20.0669212,
|
|
"posY": 1.28899217,
|
|
"posZ": -72.67546,
|
|
"rotX": 0.0208085813,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.01677119,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Crisis of Identity",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6204": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160144707/2C871C99B51FD4CD83362B362528C8C1CA486783/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8f0604",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 7.196402,
|
|
"posY": 1.32495046,
|
|
"posZ": -58.3756,
|
|
"rotX": 0.0208088532,
|
|
"rotY": 269.998352,
|
|
"rotZ": 0.0167705081,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Jorogumo",
|
|
"Description": "The Seductress",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 613500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6135": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870299703/838F89970A03B4A0B16258DA7CCD6AB52FAF9761/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "93db19",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.9171944,
|
|
"posY": 1.29469836,
|
|
"posZ": -49.2735748,
|
|
"rotX": 0.0208091345,
|
|
"rotY": 269.9985,
|
|
"rotZ": 0.0167707242,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Freya",
|
|
"Description": "The Warrior",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6207": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160150582/8F0F066D06D9AAD4194FF8E6D4216C1D14C1388E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "94d024",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 26.8402538,
|
|
"posY": 1.29815245,
|
|
"posZ": -49.7847252,
|
|
"rotX": 0.0208148025,
|
|
"rotY": 269.978882,
|
|
"rotZ": 0.0167633481,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Bride of Frankenstein",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6153": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873261138/CD01143C9B0306B02BF365D0B0E6D18E9BC45491/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873261739/A065DBB4E6DA92B5C6341693C52108B5AA90E22A/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "96dc11",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 24.8910351,
|
|
"posY": 1.29630148,
|
|
"posZ": -53.69009,
|
|
"rotX": 0.0208089761,
|
|
"rotY": 269.9996,
|
|
"rotZ": 0.01677034,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Psyche",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6175": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873300332/257DEBCCA7CB322C5D2BB38CD7E45D5925057C5A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873301043/D1B7DB72D56E19E5020306A2179064505B0DCAFD/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "97cea6",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.9166,
|
|
"posY": 1.2933687,
|
|
"posZ": -53.8151,
|
|
"rotX": 0.0208126027,
|
|
"rotY": 269.9857,
|
|
"rotZ": 0.0167659968,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bast",
|
|
"Description": "The Matron",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6208": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521095788225059/0AB0F3552143407A67F5AB3FC57640638D47011D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9bff41",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 7.196402,
|
|
"posY": 1.32829845,
|
|
"posZ": -46.938,
|
|
"rotX": 0.0208087321,
|
|
"rotY": 270.000122,
|
|
"rotZ": 0.0167712346,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Aphrodite",
|
|
"Description": "The Lover",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 613200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6132": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870295441/F83679708A2BDC8B3284A76AB91A3D868F23337A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9cc9af",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 0.8054002,
|
|
"posY": 1.32396793,
|
|
"posZ": -53.8029,
|
|
"rotX": 0.0208076537,
|
|
"rotY": 270.003326,
|
|
"rotZ": 0.0167724,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Selene",
|
|
"Description": "The Moon",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6203": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160139170/7E51FFDB43369FCC250AC97C38D20A56B2807710/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a10a31",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.6804161,
|
|
"posY": 1.29751313,
|
|
"posZ": -59.2150154,
|
|
"rotX": 0.0208141766,
|
|
"rotY": 269.981842,
|
|
"rotZ": 0.0167643167,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Cassilda",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6179": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873305481/2362394A8CE53FCDC0ED81B42FBDE5E50248E75F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873306067/431146D5D3290E78D2AA2B6676332432737D92CD/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a3752c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.3879,
|
|
"posY": 1.32476485,
|
|
"posZ": -62.9694,
|
|
"rotX": 0.0208085012,
|
|
"rotY": 269.999451,
|
|
"rotZ": 0.0167708267,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Titania",
|
|
"Description": "The Fairy Queen",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6198": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160123011/C7FAC9F7B23CB5146A5C7384F1C70FF0E61171CC/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a55c84",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 26.8402538,
|
|
"posY": 1.29777324,
|
|
"posZ": -51.0803375,
|
|
"rotX": 0.0208059363,
|
|
"rotY": 270.01,
|
|
"rotZ": 0.0167742223,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Ereshkigal",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6157": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873266724/FEBBC9CB9A26A521EFE05A30895053E684CC97E5/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873267097/21A7279E102ECB1F449C1FE64FB0FB502E9C44DA/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a5a5fd",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 30.7249565,
|
|
"posY": 1.29956722,
|
|
"posZ": -49.77137,
|
|
"rotX": 0.0208145827,
|
|
"rotY": 269.979767,
|
|
"rotZ": 0.016763512,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Athena",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6148": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873244504/B3F8E5970F91AE8B356161B7FF002832B30514FD/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873248639/BC9065D083735BC4ED77B22B9AF0E77FA9A8BDEC/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a60082",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 28.7816,
|
|
"posY": 1.29961586,
|
|
"posZ": -47.19406,
|
|
"rotX": 0.0208148826,
|
|
"rotY": 269.979,
|
|
"rotZ": 0.0167633463,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Carmilla",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6154": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873262583/29A8DA757DA58D717041721DDF3AA6514A55C357/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873263168/60FEE37C64A31DAE9A13D76E635FFCC431D10E65/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a967e3",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 12.1245756,
|
|
"posY": 1.33488059,
|
|
"posZ": -70.3783,
|
|
"rotX": 0.0208137836,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.0167806763,
|
|
"scaleX": 0.87500006,
|
|
"scaleY": 0.87500006,
|
|
"scaleZ": 0.87500006
|
|
},
|
|
"Nickname": "Role Deck",
|
|
"Description": "Created by Serendipigans\n---\nSeparate the 11 role cards and place them individually into the bag. \n\nDrag select the roles back into the bag before each time you select.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"Number": 0,
|
|
"CustomMesh": {
|
|
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1824514986560792773/6D38C44C13DCABA81F960DC43872ABC4DBBB1113/",
|
|
"NormalURL": "",
|
|
"ColliderURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_COL.obj",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CustomShader": {
|
|
"SpecularColor": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"SpecularIntensity": 0.05,
|
|
"SpecularSharpness": 3.0,
|
|
"FresnelStrength": 0.1
|
|
},
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onLoad()\r\n self.addContextMenuItem(\"Standard\", standard, false)\r\n self.addContextMenuItem(\"Improvisation\", improv, false)\r\n self.addContextMenuItem(\"Crisis of Identity\", crisis, false)\r\n self.addContextMenuItem(\"Tsarevna Lebed\", tsarevna, false)\r\n\r\n math.randomseed(os.time())\r\nend\r\n\r\nfunction get_offset()\r\n local posn = self.getPosition()\r\n local x = 0\r\n local y = 0.1\r\n local z = 2.3\r\n if math.abs(posn.z) > 40 or (posn.x < -43 or posn.x > 7) then -- Front positions\r\n if posn.z > 0 then -- White\r\n return Vector({x, y, z})\r\n else -- Orange\r\n return Vector({x, y, -z})\r\n end\r\n else -- Side Positions\r\n if posn.z > 0 then -- Green\r\n return Vector({z, y, x})\r\n else -- Red\r\n return Vector({z, y, -x})\r\n end\r\n end\r\nend\r\n\r\nfunction get_orientation()\r\n local posn = self.getPosition()\r\n if math.abs(posn.z) > 40 or (posn.x < -43 or posn.x > 7) then -- Front positions (White / Orange)\r\n return Vector({0, 270, 0})\r\n else\r\n if posn.z > 0 then -- Green\r\n return Vector({0, 0, 0})\r\n else -- Red\r\n return Vector({0, 180, 0})\r\n end\r\n end\r\nend\r\n\r\nfunction standard(color)\r\n self.shuffle()\r\n local offset = get_offset()\r\n local orientation = get_orientation()\r\n local cassildaIdx = -1\r\n local tsarevnaIdx = -1\r\n for _, card in ipairs(self.getObjects()) do\r\n if card.name == \"Cassilda\" and card.index >= self.getQuantity()-2 then\r\n cassildaIdx = card.index\r\n end\r\n if card.name == \"Tsarevna Lebed\" and card.index >= self.getQuantity()-2 then\r\n tsarevnaIdx = card.index\r\n end\r\n end\r\n if cassildaIdx ~= -1 and tsarevnaIdx == -1 then\r\n self.takeObject({\r\n position = self.getPosition() + offset,\r\n rotation = orientation,\r\n index = cassildaIdx,\r\n smooth = true\r\n })\r\n else\r\n for i=1,2 do\r\n self.takeObject({\r\n position = self.getPosition() + i*offset,\r\n rotation = orientation,\r\n smooth = true\r\n })\r\n end\r\n end\r\nend\r\n\r\nfunction improv(color)\r\n self.shuffle()\r\n local offset = get_offset()\r\n local orientation = get_orientation()\r\n local t = 1\r\n for _, card in ipairs(self.getObjects()) do\r\n if card.name ~= \"Cassilda\" then\r\n self.takeObject({\r\n position = self.getPosition() + t*offset,\r\n rotation = orientation,\r\n index = _-t,\r\n smooth = true\r\n })\r\n t=t+1\r\n end\r\n if t >= 7 then break end\r\n end\r\nend\r\n\r\nfunction crisis(color)\r\n self.shuffle()\r\n local offset = get_offset()\r\n local orientation = get_orientation()\r\n orientation.z = orientation.z + 180\r\n local t = 1\r\n for _, card in ipairs(self.getObjects()) do\r\n if card.name ~= \"Cassilda\" then\r\n self.takeObject({\r\n position = self.getPosition() + 8*offset,\r\n rotation = orientation,\r\n index = _-t,\r\n smooth = true\r\n })\r\n t=t+1\r\n end\r\n if t >= 3 then break end\r\n end\r\nend\r\n\r\nfunction tsarevna(color)\r\n self.shuffle()\r\n local offset = get_offset()\r\n local orientation = get_orientation()\r\n local t = 1\r\n for i=1,3 do\r\n self.takeObject({\r\n position = self.getPosition() + (1+i)*offset,\r\n rotation = orientation,\r\n smooth = true\r\n })\r\n end\r\nend\r\n",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a9e612",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.9171944,
|
|
"posY": 1.29536784,
|
|
"posZ": -46.9860725,
|
|
"rotX": 0.0208085962,
|
|
"rotY": 270.000244,
|
|
"rotZ": 0.0167712737,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Artemis",
|
|
"Description": "The Huntress",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6112": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870266262/F1CF546FABE3A688977F6BF2313C0B2D68089E5F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "aa5286",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 13.649106,
|
|
"posY": 1.32795084,
|
|
"posZ": -56.1313,
|
|
"rotX": 0.0208083875,
|
|
"rotY": 270.0002,
|
|
"rotZ": 0.0167716853,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Anne Shirley",
|
|
"Description": "The Idealist",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 612300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931874827544/5245D0D045662C51B4C5BB6CF1CBF72199DF390A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ac8f67",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.73846316,
|
|
"posY": 1.32018745,
|
|
"posZ": -70.35708,
|
|
"rotX": 0.0208132211,
|
|
"rotY": 269.985535,
|
|
"rotZ": 0.0167656448,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Lola Hayes",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CardID": 259915,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2599": {
|
|
"FaceURL": "https://i.imgur.com/WPYBga4.jpg",
|
|
"BackURL": "https://i.imgur.com/vB84qMp.jpg",
|
|
"NumWidth": 7,
|
|
"NumHeight": 3,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "acc4c9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 7.1675,
|
|
"posY": 1.3236028,
|
|
"posZ": -62.9438,
|
|
"rotX": 0.0208173711,
|
|
"rotY": 269.9696,
|
|
"rotZ": 0.016760096,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Marie Laveau",
|
|
"Description": "The Occultist",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6199": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160123898/2F7BD351DF62D81B71FBA0E55CB362D7EC9DB3E1/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "acc5be",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 7.408362,
|
|
"posY": 1.321517,
|
|
"posZ": -70.36848,
|
|
"rotX": 0.02081311,
|
|
"rotY": 269.9856,
|
|
"rotZ": 0.0167659521,
|
|
"scaleX": 0.782293141,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.782293141
|
|
},
|
|
"Nickname": "Lola Hayes",
|
|
"Description": "The Actress",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6188": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521684847807579/FAEC9100A5761FF6C41B16C70A27AE6CE904B884/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690521684847809160/B354564DB3A63A7DD3724DFCF91211B7B73FBADC/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b102c3",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 13.6926012,
|
|
"posY": 1.33064508,
|
|
"posZ": -46.9812,
|
|
"rotX": 0.02081251,
|
|
"rotY": 269.98584,
|
|
"rotZ": 0.0167663842,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Alice",
|
|
"Description": "The Heroine",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 611800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6118": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870274270/4ABB8DBFA2400D19F1E0C3427BA9CF28C1CD0654/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b45739",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 30.724966,
|
|
"posY": 1.30032575,
|
|
"posZ": -47.1801376,
|
|
"rotX": 0.0208088737,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.016770795,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Alice",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6143": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873231871/1D5E86299C0565D870791BA8BB85AE696AB9006E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873232539/BA649978F85CA17598738489A654CE9F60BEC9A3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b4fc98",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 24.8910351,
|
|
"posY": 1.29819763,
|
|
"posZ": -47.21202,
|
|
"rotX": 0.0208149012,
|
|
"rotY": 269.979248,
|
|
"rotZ": 0.0167633984,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Berenice",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6152": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873259566/380566EB1C00275C583D6CA93343E35371A177AE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873259955/2FE11CA19B8C938D237A9128483A2BF1FA3DE3D8/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b811d0",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 0.805443645,
|
|
"posY": 1.32597673,
|
|
"posZ": -46.9402771,
|
|
"rotX": 0.0208074152,
|
|
"rotY": 270.003326,
|
|
"rotZ": 0.0167723931,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tsarevna Lebed",
|
|
"Description": "The Enchanted",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6181": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521223902926103/6D4142E4984739D24D60A6B2F088C7106BFA6DFD/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bb0dc0",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 13.6490984,
|
|
"posY": 1.32929,
|
|
"posZ": -51.5563,
|
|
"rotX": 0.0208127461,
|
|
"rotY": 269.985382,
|
|
"rotZ": 0.0167661123,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Athena",
|
|
"Description": "The Sage",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 612000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6120": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870278066/5DDD37C71A3CEC5CBEFDBE7B09A2379F846C9D9D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bb684e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.90452,
|
|
"posY": 1.2878437,
|
|
"posZ": -72.67546,
|
|
"rotX": 0.02080641,
|
|
"rotY": 270.0074,
|
|
"rotZ": 0.0167739,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Crisis of Identity",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6205": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160144707/2C871C99B51FD4CD83362B362528C8C1CA486783/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bb9641",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 3.941599,
|
|
"posY": 1.32511055,
|
|
"posZ": -53.7906,
|
|
"rotX": 0.02080845,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.01677106,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rapunzel",
|
|
"Description": "The Damsel",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 613900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6139": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931870304300/4F7764529CEDCAA6964F39D090E7A43DAA72DABE/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "be227d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 26.8402538,
|
|
"posY": 1.29853177,
|
|
"posZ": -48.48911,
|
|
"rotX": 0.0208146479,
|
|
"rotY": 269.979,
|
|
"rotZ": 0.0167634636,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Baba Yaga",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 614900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6149": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873249532/40D917C80018293488654126A94B0DF914E8B90E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873256362/06274F69CC59CCAAD733550E89D950447D277A00/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c04c67",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 22.9711456,
|
|
"posY": 1.2974968,
|
|
"posZ": -47.2242165,
|
|
"rotX": 0.0208147541,
|
|
"rotY": 269.9795,
|
|
"rotZ": 0.0167635959,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Tsarevna Lebed",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6178": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873304249/E0D7AA933F5A55B6673D2954B5168513F9FC8F9D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873304805/A08032FE617216F104CFB07FE488EE73997FA2B4/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c5fe5b",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 30.7249565,
|
|
"posY": 1.299188,
|
|
"posZ": -51.0669861,
|
|
"rotX": 0.0208047032,
|
|
"rotY": 270.014,
|
|
"rotZ": 0.0167760346,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Belle",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6151": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873258327/4B20F8BDFD53D421859DF5679A82B6C5ACF127B4/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873258938/FAECC306C92504F32D651862F54618339C6DD654/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c7e3cf",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 30.7249565,
|
|
"posY": 1.29880869,
|
|
"posZ": -52.3625946,
|
|
"rotX": 0.0208087731,
|
|
"rotY": 270.000427,
|
|
"rotZ": 0.0167713966,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Fatima al-Fihri",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6159": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873270869/C617BDF051A11B2C9F14F7B887C3636840E9CAD7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873271531/D00AEFCFA0B586B0DBD8EBCAF2DCC0A1C797AB55/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c95de1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.66904,
|
|
"posY": 1.29951656,
|
|
"posZ": -52.3567238,
|
|
"rotX": 0.02080897,
|
|
"rotY": 269.999329,
|
|
"rotZ": 0.0167707354,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Freya",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6160": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873275544/4897184FFB12FDF4ED1C6E844F131B6A88021021/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873276248/8EEC0B7818D682E1F779B8BECB21EB5D25E59CAE/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d3d7fb",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.66904,
|
|
"posY": 1.29913723,
|
|
"posZ": -53.65234,
|
|
"rotX": 0.0208132584,
|
|
"rotY": 269.984558,
|
|
"rotZ": 0.0167651922,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Kali",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6164": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873283012/61189FC34A9D63C0B197111455D89E35F0594FA7/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873283902/24FB519FC7D3CA4B8CF4A7D5B3ECE234E2E25E19/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d4d2be",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.8868,
|
|
"posY": 1.29069018,
|
|
"posZ": -62.9289,
|
|
"rotX": 0.0208123829,
|
|
"rotY": 269.9867,
|
|
"rotZ": 0.0167664,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Werethekau",
|
|
"Description": "The Protector",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6196": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160120958/C6E29F6D62648A01CA4249417B7583DBB7B669F6/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d914f0",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 13.6255,
|
|
"posY": 1.3259474,
|
|
"posZ": -62.9463,
|
|
"rotX": 0.02080815,
|
|
"rotY": 270.000916,
|
|
"rotZ": 0.01677195,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Yuasa Toshiko",
|
|
"Description": "The Physicist",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 619700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6197": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160122166/8E40109B7ADDAE18E30329F0FEC6AC0D267D2134/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d9a805",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 7.19639826,
|
|
"posY": 1.32762885,
|
|
"posZ": -49.2255,
|
|
"rotX": 0.02080856,
|
|
"rotY": 269.9997,
|
|
"rotZ": 0.0167710371,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ereshkigal",
|
|
"Description": "The Judge",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 614200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6142": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873222576/BA19C652C33C2874579305F5EE43317B3E71E91D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dc6a2c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 16.8998127,
|
|
"posY": 1.28918171,
|
|
"posZ": -68.09832,
|
|
"rotX": 0.0208082274,
|
|
"rotY": 270.000824,
|
|
"rotZ": 0.0167714916,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cassilda",
|
|
"Description": "The Ruler",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618600,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6186": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521428943418861/4ADE38186C5098F9F3C69C0376D7480190F985FA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ddccf9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.4736061,
|
|
"posY": 1.328811,
|
|
"posZ": -49.2529,
|
|
"rotX": 0.02080825,
|
|
"rotY": 270.0014,
|
|
"rotZ": 0.0167717021,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eris",
|
|
"Description": "The Chaotic",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6185": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690521428943417881/456D04022F1E492349C7A9FEE80CD2A7D0E7D427/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e0bf2d",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.40735,
|
|
"posY": 1.3254379,
|
|
"posZ": -60.6943245,
|
|
"rotX": 0.0208085682,
|
|
"rotY": 269.999329,
|
|
"rotZ": 0.0167709365,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mary Read",
|
|
"Description": "The Pirate",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 618900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6189": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1691650432074802024/40BE7BA6BACFE3F390B3738260F331B295F5C527/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e26ddc",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 24.8910351,
|
|
"posY": 1.29705989,
|
|
"posZ": -51.09886,
|
|
"rotX": 0.0208040923,
|
|
"rotY": 270.015869,
|
|
"rotZ": 0.0167766549,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Mina Harker",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 617100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6171": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873293694/75130624BEC3A06126031CF0FF80972B402F3782/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873294597/958D98CC716F92617B3AD99CF388D8868C9B78B6/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e4377f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 10.4736061,
|
|
"posY": 1.32948065,
|
|
"posZ": -46.9654,
|
|
"rotX": 0.0208082218,
|
|
"rotY": 270.00116,
|
|
"rotZ": 0.0167715289,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "La Llorona",
|
|
"Description": "The Grieving",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 621200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6212": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160167279/E2C36D6F809BCAFF3889C200D50C30DA76801987/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e86c65",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 13.6491041,
|
|
"posY": 1.32862043,
|
|
"posZ": -53.8438,
|
|
"rotX": 0.02080826,
|
|
"rotY": 270.000275,
|
|
"rotZ": 0.01677165,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Belle",
|
|
"Description": "The Erudite",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620900,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6209": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1865048991160158930/6B6CBDF727CE39DAC115C2035FABC8ED357A89B0/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ebc4d9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 28.7816,
|
|
"posY": 1.29923666,
|
|
"posZ": -48.4896774,
|
|
"rotX": 0.0208096988,
|
|
"rotY": 269.9964,
|
|
"rotZ": 0.016769493,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Eris",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6158": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873268484/59EB091438C3C29401066EF909F45126FE86ED9E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873269133/90C7D06C06A74812B4EFB9369EEF3F1AE9177173/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ef116e",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 30.7249565,
|
|
"posY": 1.29842949,
|
|
"posZ": -53.65821,
|
|
"rotX": 0.0208146572,
|
|
"rotY": 269.9796,
|
|
"rotZ": 0.0167633947,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Jane Eyre",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6162": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873279989/F9C971C69CA28D8EB50BE256ACBCD23F80D63E3D/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873280547/2BB68986AECBA5B4A0BBE8A79353E43F21153D7F/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f317ac",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 32.66904,
|
|
"posY": 1.300275,
|
|
"posZ": -49.76549,
|
|
"rotX": 0.0208088253,
|
|
"rotY": 269.999817,
|
|
"rotZ": 0.0167712737,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Bast",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 615000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6150": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873257105/F8BEA69433897438C5376B31086AEFFE628C2B82/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873257452/18D21A3FAC71B94D65AB9AA7362782004900EAB3/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fa142f",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 24.8910351,
|
|
"posY": 1.29743922,
|
|
"posZ": -49.80325,
|
|
"rotX": 0.0208057091,
|
|
"rotY": 270.010162,
|
|
"rotZ": 0.0167744346,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Idunn",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": false,
|
|
"Snap": false,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"CardID": 616100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6161": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873276958/5A42D330AF11849CA2D9E5A6948D99BEE738D303/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1690520931873277544/D75D88D0DAD2B02B124A86AE903DDB814D048BDB/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1610e2",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -25.3817043,
|
|
"posY": 1.90050375,
|
|
"posZ": -46.7924347,
|
|
"rotX": 0.0117110536,
|
|
"rotY": 270.006836,
|
|
"rotZ": 0.940494239,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Nyx",
|
|
"Description": "The Night",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 620300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"6203": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862799141633194149/9C1BDDDD3CF2EF5A60EE558B32CE9C51880EE07A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1754686449895686846/9A43D862F1AEB048BC349C9E2A1DFC0BE22AA7D5/",
|
|
"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
|
|
}
|
|
}
|
|
]
|
|
}
|