4490 lines
156 KiB
JSON
4490 lines
156 KiB
JSON
{
|
|
"GUID": "23dd51",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 12.249,
|
|
"posY": 1.48149908,
|
|
"posZ": 35.986,
|
|
"rotX": 6.041344E-07,
|
|
"rotY": 270.0,
|
|
"rotZ": -3.189384E-07,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Carnevale of Horrors",
|
|
"Description": "Investigators must spend 3XP each to play this side-mission",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/826883954590151386/AFF80583FAE6A513663D7BA0A36C4EDAC02DCF43/",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 3,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
|
|
"LuaScriptState": "{\"ml\":{\"0368c1\":{\"lock\":false,\"pos\":{\"x\":-17.1201114654541,\"y\":1.61892175674438,\"z\":-0.0300021637231112},\"rot\":{\"x\":359.920104980469,\"y\":270.0048828125,\"z\":0.0166656374931335}},\"12d492\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62247502803802,\"z\":-3.82999968528748},\"rot\":{\"x\":0.0168392304331064,\"y\":179.999969482422,\"z\":0.0799403712153435}},\"1e7f1b\":{\"lock\":false,\"pos\":{\"x\":-14.3835000991821,\"y\":1.63026607036591,\"z\":-0.214106932282448},\"rot\":{\"x\":359.350921630859,\"y\":269.9970703125,\"z\":0.0168699957430363}},\"2e4956\":{\"lock\":false,\"pos\":{\"x\":-11.6656150817871,\"y\":1.65501761436462,\"z\":9.07350444793701},\"rot\":{\"x\":359.920104980469,\"y\":269.979156494141,\"z\":0.0168711394071579}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-17.1200008392334,\"y\":1.6042023897171,\"z\":-3.8299994468689},\"rot\":{\"x\":359.983154296875,\"y\":7.26335347280838E-05,\"z\":359.920074462891}},\"4cc43d\":{\"lock\":false,\"pos\":{\"x\":-3.92750906944275,\"y\":1.73475027084351,\"z\":5.75710296630859},\"rot\":{\"x\":359.919738769531,\"y\":269.9697265625,\"z\":180.016860961914}},\"4d3553\":{\"lock\":false,\"pos\":{\"x\":-17.1200008392334,\"y\":1.6064624786377,\"z\":3.86000037193298},\"rot\":{\"x\":359.983154296875,\"y\":359.984527587891,\"z\":359.920074462891}},\"655937\":{\"lock\":false,\"pos\":{\"x\":-2.68850708007813,\"y\":1.61911654472351,\"z\":-5.04849863052368},\"rot\":{\"x\":0.0167769361287355,\"y\":180.041900634766,\"z\":0.0802685767412186}},\"81a6f5\":{\"lock\":false,\"pos\":{\"x\":-26.8136005401611,\"y\":1.61662578582764,\"z\":-7.55130100250244},\"rot\":{\"x\":0.0798944160342216,\"y\":90.0000228881836,\"z\":359.983123779297}},\"949c7d\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62473511695862,\"z\":3.85999989509583},\"rot\":{\"x\":0.0168391969054937,\"y\":180.000030517578,\"z\":0.0799363553524017}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"a49fb6\":{\"lock\":false,\"pos\":{\"x\":-2.72470688819885,\"y\":1.62076044082642,\"z\":0.373301953077316},\"rot\":{\"x\":0.0168950818479061,\"y\":179.957504272461,\"z\":0.0802437588572502}},\"a5891b\":{\"lock\":false,\"pos\":{\"x\":-3.55390048027039,\"y\":1.58209657669067,\"z\":-14.7800006866455},\"rot\":{\"x\":359.919738769531,\"y\":270.002655029297,\"z\":0.0168340262025595}},\"aa7abc\":{\"lock\":false,\"pos\":{\"x\":-3.95601725578308,\"y\":1.59753942489624,\"z\":-10.4411973953247},\"rot\":{\"x\":359.919738769531,\"y\":270.000061035156,\"z\":0.0168379191309214}},\"ab0576\":{\"lock\":false,\"pos\":{\"x\":-20.6238021850586,\"y\":1.61234605312347,\"z\":7.25540113449097},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168641619384289}},\"b676d8\":{\"lock\":false,\"pos\":{\"x\":-20.6236991882324,\"y\":1.60798108577728,\"z\":-7.59650039672852},\"rot\":{\"x\":0.0798945501446724,\"y\":90.0000839233398,\"z\":359.983123779297}},\"bb43b8\":{\"lock\":false,\"pos\":{\"x\":-11.5593156814575,\"y\":1.6556875705719,\"z\":11.8573036193848},\"rot\":{\"x\":359.920104980469,\"y\":270.007659912109,\"z\":0.0168330129235983}},\"c1d121\":{\"lock\":false,\"pos\":{\"x\":-1.46558094024658,\"y\":1.47562277317047,\"z\":-26.9304218292236},\"rot\":{\"x\":359.920135498047,\"y\":269.997222900391,\"z\":0.0168759189546108}},\"eb8aad\":{\"lock\":false,\"pos\":{\"x\":-11.5609178543091,\"y\":1.61305212974548,\"z\":6.36680364608765},\"rot\":{\"x\":359.920104980469,\"y\":269.986938476563,\"z\":0.0168587826192379}},\"fde05d\":{\"lock\":false,\"pos\":{\"x\":-27.0645999908447,\"y\":1.62142419815063,\"z\":7.58519983291626},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168681684881449}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "d5e519",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 13.0532217,
|
|
"posY": 2.0002408,
|
|
"posZ": 24.79495,
|
|
"rotX": 359.920166,
|
|
"rotY": 269.9998,
|
|
"rotZ": 0.0166507475,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Setup/Resolution",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
380501,
|
|
380512,
|
|
380513,
|
|
380510,
|
|
380502,
|
|
380511,
|
|
380500
|
|
],
|
|
"CustomDeck": {
|
|
"3805": {
|
|
"FaceURL": "https://i.imgur.com/vLH2OYg.jpg",
|
|
"BackURL": "https://i.imgur.com/cZ3rUH5.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "810ae4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 17.05098,
|
|
"posY": 1.680821,
|
|
"posZ": -5.34100246,
|
|
"rotX": 359.935242,
|
|
"rotY": 269.999969,
|
|
"rotZ": 180.01059,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 380501,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/vLH2OYg.jpg",
|
|
"BackURL": "https://i.imgur.com/cZ3rUH5.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "124422",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 17.10192,
|
|
"posY": 1.67575192,
|
|
"posZ": -5.27401733,
|
|
"rotX": 359.934753,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.008926,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 380512,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/vLH2OYg.jpg",
|
|
"BackURL": "https://i.imgur.com/cZ3rUH5.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8c4fa7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 17.185133,
|
|
"posY": 1.6739769,
|
|
"posZ": -5.47358561,
|
|
"rotX": 359.9365,
|
|
"rotY": 270.000183,
|
|
"rotZ": 179.911591,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 380513,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/vLH2OYg.jpg",
|
|
"BackURL": "https://i.imgur.com/cZ3rUH5.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b68d07",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -10.316041,
|
|
"posY": 1.81215644,
|
|
"posZ": -4.195695,
|
|
"rotX": 0.8196856,
|
|
"rotY": 270.0044,
|
|
"rotZ": 181.290009,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 380510,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/vLH2OYg.jpg",
|
|
"BackURL": "https://i.imgur.com/cZ3rUH5.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2fa708",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -10.0452175,
|
|
"posY": 1.78026557,
|
|
"posZ": -3.85832858,
|
|
"rotX": 359.932922,
|
|
"rotY": 269.988464,
|
|
"rotZ": 182.68924,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 380502,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/vLH2OYg.jpg",
|
|
"BackURL": "https://i.imgur.com/cZ3rUH5.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "888bfe",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -9.979815,
|
|
"posY": 1.78225672,
|
|
"posZ": -3.467246,
|
|
"rotX": 359.9263,
|
|
"rotY": 269.987732,
|
|
"rotZ": 182.577972,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 380511,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/vLH2OYg.jpg",
|
|
"BackURL": "https://i.imgur.com/cZ3rUH5.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8c4fa7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -9.97907,
|
|
"posY": 1.66900992,
|
|
"posZ": -3.798508,
|
|
"rotX": 359.910736,
|
|
"rotY": 270.021973,
|
|
"rotZ": 180.009125,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 380500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/vLH2OYg.jpg",
|
|
"BackURL": "https://i.imgur.com/cZ3rUH5.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "0368c1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1201572,
|
|
"posY": 1.53360248,
|
|
"posZ": -0.0299929753,
|
|
"rotX": 2.24399264E-05,
|
|
"rotY": 270.004822,
|
|
"rotZ": -0.000166468017,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "San Marco Basilica",
|
|
"Description": "Venice.",
|
|
"GMNotes": "{\n \"id\": \"82008\",\n \"type\": \"Location\",\n \"traits\": \"Venice.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 234507,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1e7f1b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -14.3835611,
|
|
"posY": 1.54881644,
|
|
"posZ": -0.2140935,
|
|
"rotX": 359.4308,
|
|
"rotY": 269.997223,
|
|
"rotZ": 1.4328094E-05,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abbess Allegria Di Biase",
|
|
"Description": "Ally. Believer.",
|
|
"GMNotes": "{\n \"id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 4,\n \"traits\": \"Ally. Believer.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 4000,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"40": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2e4956",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -11.6657219,
|
|
"posY": 1.57462883,
|
|
"posZ": 9.073532,
|
|
"rotX": -1.31844544E-07,
|
|
"rotY": 269.9792,
|
|
"rotZ": -1.09581435E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
234509,
|
|
234513,
|
|
234510,
|
|
234515,
|
|
234514,
|
|
234512,
|
|
234511
|
|
],
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "f2d9d3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.747365,
|
|
"posY": 1.67237759,
|
|
"posZ": 9.495608,
|
|
"rotX": 359.914276,
|
|
"rotY": 269.982147,
|
|
"rotZ": 0.0237629414,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Streets of Venice",
|
|
"Description": "Venice.",
|
|
"GMNotes": "{\n \"id\": \"82010\",\n \"type\": \"Location\",\n \"traits\": \"Venice.\",\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"icons\": \"\",\n \"connections\": \"\",\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 234509,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8d6af5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.7395535,
|
|
"posY": 1.81767607,
|
|
"posZ": 9.351762,
|
|
"rotX": 359.899078,
|
|
"rotY": 270.01886,
|
|
"rotZ": 0.0523137152,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Flooded Square",
|
|
"Description": "Venice.",
|
|
"GMNotes": "{\n \"id\": \"82014\",\n \"type\": \"Location\",\n \"traits\": \"Venice.\",\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"icons\": \"\",\n \"connections\": \"\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 234513,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2f2498",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -12.0854568,
|
|
"posY": 1.83561885,
|
|
"posZ": 9.121994,
|
|
"rotX": 359.918365,
|
|
"rotY": 269.99884,
|
|
"rotZ": 0.0204047877,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rialto Bridge",
|
|
"Description": "Venice. Bridge.",
|
|
"GMNotes": "{\n \"id\": \"82011\",\n \"type\": \"Location\",\n \"traits\": \"Venice. Bridge.\",\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"icons\": \"\",\n \"connections\": \"\",\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 234510,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "124288",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.9377069,
|
|
"posY": 1.82179582,
|
|
"posZ": 9.00359249,
|
|
"rotX": 359.904236,
|
|
"rotY": 269.994873,
|
|
"rotZ": 0.0275308024,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Guardian",
|
|
"Description": "Venice.",
|
|
"GMNotes": "{\n \"id\": \"82016\",\n \"type\": \"Location\",\n \"traits\": \"Venice.\",\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"icons\": \"\",\n \"connections\": \"\",\n \"uses\": [\n {\n \"countPerInvestigator\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 234515,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "48d3db",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.7704182,
|
|
"posY": 1.81965172,
|
|
"posZ": 9.226203,
|
|
"rotX": 359.9134,
|
|
"rotY": 269.997467,
|
|
"rotZ": 0.0181669053,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Accademia Bridge",
|
|
"Description": "Venice. Bridge.",
|
|
"GMNotes": "{\n \"id\": \"82015\",\n \"type\": \"Location\",\n \"traits\": \"Venice. Bridge.\",\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"icons\": \"\",\n \"connections\": \"\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 234514,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "04cdf3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.3814936,
|
|
"posY": 1.82169175,
|
|
"posZ": 9.216619,
|
|
"rotX": 359.919037,
|
|
"rotY": 269.999023,
|
|
"rotZ": 0.0207705069,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bridge of Sighs",
|
|
"Description": "Venice. Bridge.",
|
|
"GMNotes": "{\n \"id\": \"82013\",\n \"type\": \"Location\",\n \"traits\": \"Venice. Bridge.\",\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"icons\": \"\",\n \"connections\": \"\",\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 234512,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4260f0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.6972761,
|
|
"posY": 1.82716215,
|
|
"posZ": 9.4662075,
|
|
"rotX": 359.918427,
|
|
"rotY": 269.9987,
|
|
"rotZ": 0.0175046977,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Venetian Garden",
|
|
"Description": "Venice.",
|
|
"GMNotes": "{\n \"id\": \"82012\",\n \"type\": \"Location\",\n \"traits\": \"Venice.\",\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"icons\": \"\",\n \"connections\": \"\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 234511,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "4cc43d",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.927722,
|
|
"posY": 1.7290957,
|
|
"posZ": 5.757149,
|
|
"rotX": -2.8190945E-07,
|
|
"rotY": 269.969757,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "Carnevale of Horrors",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
3712,
|
|
3713,
|
|
3714,
|
|
3715,
|
|
3716,
|
|
3717,
|
|
3721,
|
|
3722,
|
|
3703,
|
|
3704,
|
|
3705,
|
|
3706,
|
|
3707,
|
|
3708,
|
|
3711,
|
|
3709,
|
|
3710,
|
|
3718,
|
|
3719,
|
|
3720,
|
|
3724,
|
|
3723,
|
|
3726,
|
|
3725,
|
|
3701,
|
|
3702
|
|
],
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "f39f35",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.9259281,
|
|
"posY": 1.52641475,
|
|
"posZ": -2.48130512,
|
|
"rotX": -0.00070781837,
|
|
"rotY": 270.0011,
|
|
"rotZ": 180.330429,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lost in Venice",
|
|
"Description": "Blunder.",
|
|
"GMNotes": "{\n \"id\": \"82032\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Blunder.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3712,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8f3ad2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.219142,
|
|
"posY": 1.52637482,
|
|
"posZ": -2.13447332,
|
|
"rotX": 0.00029167044,
|
|
"rotY": 269.997223,
|
|
"rotZ": 180.842026,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lost in Venice",
|
|
"Description": "Blunder.",
|
|
"GMNotes": "{\n \"id\": \"82032\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Blunder.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3713,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ac4b72",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.7360477,
|
|
"posY": 1.51812291,
|
|
"posZ": -2.500821,
|
|
"rotX": -0.0010236213,
|
|
"rotY": 270.0087,
|
|
"rotZ": 181.07663,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lost in Venice",
|
|
"Description": "Blunder.",
|
|
"GMNotes": "{\n \"id\": \"82032\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Blunder.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3714,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "97cc02",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.88548,
|
|
"posY": 1.49761307,
|
|
"posZ": -2.01502013,
|
|
"rotX": -0.00167062157,
|
|
"rotY": 270.00946,
|
|
"rotZ": 180.297272,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Watchers' Gaze",
|
|
"Description": "Terror.",
|
|
"GMNotes": "{\n \"id\": \"82033\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3715,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "10d41c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.7946987,
|
|
"posY": 1.497315,
|
|
"posZ": -2.32573652,
|
|
"rotX": -0.000394977047,
|
|
"rotY": 269.998627,
|
|
"rotZ": 180.853485,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Watchers' Gaze",
|
|
"Description": "Terror.",
|
|
"GMNotes": "{\n \"id\": \"82033\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3716,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fe04b3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.2148905,
|
|
"posY": 1.48088086,
|
|
"posZ": -2.38565469,
|
|
"rotX": -0.00038820022,
|
|
"rotY": 270.002625,
|
|
"rotZ": 180.461624,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Watchers' Gaze",
|
|
"Description": "Terror.",
|
|
"GMNotes": "{\n \"id\": \"82033\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3717,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "32a6e2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.7603874,
|
|
"posY": 1.47872412,
|
|
"posZ": -2.28992748,
|
|
"rotX": -4.03408048E-05,
|
|
"rotY": 269.9999,
|
|
"rotZ": 180.811646,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mesmerize",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"82035\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3721,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "79e1a4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.750433,
|
|
"posY": 1.52796626,
|
|
"posZ": -2.54803324,
|
|
"rotX": 357.2228,
|
|
"rotY": 270.066681,
|
|
"rotZ": 179.987625,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mesmerize",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"82035\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3722,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "27fab1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.6075039,
|
|
"posY": 1.45183182,
|
|
"posZ": -2.42943883,
|
|
"rotX": 1.29666878E-05,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.466324,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Carnevale Sentinel",
|
|
"Description": "Humanoid. Cultist.",
|
|
"GMNotes": "{\n \"id\": \"82029\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3703,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dbec9d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -14.8517389,
|
|
"posY": 1.51690042,
|
|
"posZ": -2.06553817,
|
|
"rotX": 359.99295,
|
|
"rotY": 270.016083,
|
|
"rotZ": 184.703857,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Carnevale Sentinel",
|
|
"Description": "Humanoid. Cultist.",
|
|
"GMNotes": "{\n \"id\": \"82029\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3704,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f119dc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.5699024,
|
|
"posY": 1.6033349,
|
|
"posZ": -2.02970481,
|
|
"rotX": 359.991882,
|
|
"rotY": 269.990021,
|
|
"rotZ": 190.061508,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Carnevale Sentinel",
|
|
"Description": "Humanoid. Cultist.",
|
|
"GMNotes": "{\n \"id\": \"82029\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3705,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "649527",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.9701538,
|
|
"posY": 1.43150651,
|
|
"posZ": -7.99135351,
|
|
"rotX": 0.000267818134,
|
|
"rotY": 270.000153,
|
|
"rotZ": 181.0502,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Writhing Appendage",
|
|
"Description": "Monster. Tentacle.",
|
|
"GMNotes": "{\n \"id\": \"82030\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Tentacle.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3706,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e89a0a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.9070683,
|
|
"posY": 1.42141747,
|
|
"posZ": -8.095666,
|
|
"rotX": -7.41715849E-05,
|
|
"rotY": 270.0146,
|
|
"rotZ": 181.1256,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Writhing Appendage",
|
|
"Description": "Monster. Tentacle.",
|
|
"GMNotes": "{\n \"id\": \"82030\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Tentacle.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3707,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b39ab7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.8930378,
|
|
"posY": 1.39427125,
|
|
"posZ": -7.932404,
|
|
"rotX": 359.9656,
|
|
"rotY": 270.014984,
|
|
"rotZ": 180.023392,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Writhing Appendage",
|
|
"Description": "Monster. Tentacle.",
|
|
"GMNotes": "{\n \"id\": \"82030\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Tentacle.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3708,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "febff1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.2239838,
|
|
"posY": 1.40185666,
|
|
"posZ": -7.74751472,
|
|
"rotX": -0.005253056,
|
|
"rotY": 270.029755,
|
|
"rotZ": 180.902954,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mass Hysteria",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"82031\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3711,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "95047c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.7957268,
|
|
"posY": 1.38304126,
|
|
"posZ": -7.53972626,
|
|
"rotX": -8.77786E-05,
|
|
"rotY": 269.999634,
|
|
"rotZ": 180.367828,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mass Hysteria",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"82031\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3709,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "27c1bf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.0537262,
|
|
"posY": 1.36656833,
|
|
"posZ": -7.293039,
|
|
"rotX": -0.0006381625,
|
|
"rotY": 269.9993,
|
|
"rotZ": 179.844238,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mass Hysteria",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"82031\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3710,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "027b2f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.4968681,
|
|
"posY": 1.35873663,
|
|
"posZ": -7.70947647,
|
|
"rotX": 0.00194527663,
|
|
"rotY": 269.992859,
|
|
"rotZ": 180.115082,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chaos in the Water",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"82034\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3718,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "399d65",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.433382,
|
|
"posY": 1.4190892,
|
|
"posZ": -7.4477067,
|
|
"rotX": 0.00017678451,
|
|
"rotY": 269.99707,
|
|
"rotZ": 181.194244,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chaos in the Water",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"82034\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3719,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4448e3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.5019665,
|
|
"posY": 1.40523982,
|
|
"posZ": -7.55648,
|
|
"rotX": -0.000234547639,
|
|
"rotY": 270.001862,
|
|
"rotZ": 180.649719,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chaos in the Water",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"82034\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3720,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "453252",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -22.632988,
|
|
"posY": 1.231643,
|
|
"posZ": 5.93134356,
|
|
"rotX": -0.00215101615,
|
|
"rotY": 270.0143,
|
|
"rotZ": -0.00017107313,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abduction",
|
|
"Description": "Scheme.",
|
|
"GMNotes": "{\n \"id\": \"82036\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3724,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c4701c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -22.6116524,
|
|
"posY": 1.37939727,
|
|
"posZ": 6.31485,
|
|
"rotX": 359.948669,
|
|
"rotY": 270.0029,
|
|
"rotZ": 359.912842,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abduction",
|
|
"Description": "Scheme.",
|
|
"GMNotes": "{\n \"id\": \"82036\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3723,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "916af7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -22.5659027,
|
|
"posY": 1.23167384,
|
|
"posZ": 3.24786544,
|
|
"rotX": -0.00212180428,
|
|
"rotY": 269.987122,
|
|
"rotZ": -0.00125146774,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Acrid Miasma",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"82037\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3726,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "83c3ec",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -22.71234,
|
|
"posY": 1.37919855,
|
|
"posZ": 3.4499,
|
|
"rotX": 359.989838,
|
|
"rotY": 270.00885,
|
|
"rotZ": 0.0292052217,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Acrid Miasma",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"82037\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3725,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9b0f6c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.06133,
|
|
"posY": 1.38213992,
|
|
"posZ": 6.38043642,
|
|
"rotX": 0.00238529639,
|
|
"rotY": 270.013367,
|
|
"rotZ": 179.984879,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poleman",
|
|
"Description": "Monster. Deep One.",
|
|
"GMNotes": "{\n \"id\": \"82028\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Deep One.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3701,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "470ba8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.3332233,
|
|
"posY": 1.23450589,
|
|
"posZ": 6.619837,
|
|
"rotX": -0.00164669973,
|
|
"rotY": 269.670227,
|
|
"rotZ": 180.00087,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poleman",
|
|
"Description": "Monster. Deep One.",
|
|
"GMNotes": "{\n \"id\": \"82028\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Deep One.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3702,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "655937",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.68855786,
|
|
"posY": 1.61837292,
|
|
"posZ": -5.048489,
|
|
"rotX": -7.748523E-08,
|
|
"rotY": 180.041916,
|
|
"rotZ": -3.3596443E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act Deck",
|
|
"Description": "Carnevale of Horrors",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": true,
|
|
"DeckIDs": [
|
|
269906,
|
|
380405,
|
|
269904
|
|
],
|
|
"CustomDeck": {
|
|
"2699": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
},
|
|
"3804": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "e15f60",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 27.54018,
|
|
"posY": 1.51342094,
|
|
"posZ": -3.36515474,
|
|
"rotX": 0.0132831708,
|
|
"rotY": 179.982437,
|
|
"rotZ": 0.09503044,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Row!",
|
|
"Description": "Act 3",
|
|
"GMNotes": "{\n \"id\": \"82007\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 269906,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b7152e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -2.6885283,
|
|
"posY": 1.66215932,
|
|
"posZ": -5.04851866,
|
|
"rotX": 0.019329045,
|
|
"rotY": 179.999359,
|
|
"rotZ": 0.07738855,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Get to the Boats!",
|
|
"Description": "Act 2",
|
|
"GMNotes": "{\n \"id\": \"82006\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 380405,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3804": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fda7fe",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -2.68852854,
|
|
"posY": 1.67177367,
|
|
"posZ": -5.04851866,
|
|
"rotX": 0.019242648,
|
|
"rotY": 180.007828,
|
|
"rotZ": 0.07749535,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Carnevale Conspiracy",
|
|
"Description": "Act 1",
|
|
"GMNotes": "{\n \"id\": \"82005\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 269904,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2699": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "7a167a",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 1.69,
|
|
"posY": 1.56,
|
|
"posZ": 14.24,
|
|
"rotX": 0,
|
|
"rotY": 225,
|
|
"rotZ": 0,
|
|
"scaleX": 2.0,
|
|
"scaleY": 2.0,
|
|
"scaleZ": 2.0
|
|
},
|
|
"Nickname": "Set-aside",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.0,
|
|
"g": 0.0,
|
|
"b": 0.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/2038485431565955058/F72FECE5488594A28292C06997A2E28A8B8961C5/",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
|
|
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"PhysicsMaterial": {
|
|
"StaticFriction": 0.6,
|
|
"DynamicFriction": 0.6,
|
|
"Bounciness": 0.0,
|
|
"FrictionCombine": 0,
|
|
"BounceCombine": 0
|
|
},
|
|
"Rigidbody": {
|
|
"Mass": 1.375,
|
|
"Drag": 5.0,
|
|
"AngularDrag": 5.0,
|
|
"UseGravity": true
|
|
},
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "77e4d3",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 1.69646382,
|
|
"posY": 3.689461,
|
|
"posZ": 14.27876,
|
|
"rotX": 359.967438,
|
|
"rotY": 224.997955,
|
|
"rotZ": 0.07092242,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Masks",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
295604,
|
|
295603,
|
|
295602,
|
|
295601
|
|
],
|
|
"CustomDeck": {
|
|
"2956": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "d0e108",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.60287,
|
|
"posY": 1.51139891,
|
|
"posZ": 28.7767334,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0168738868,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Gilded Volto",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"82026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 295604,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2956": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7f1927",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.602788,
|
|
"posY": 1.55401564,
|
|
"posZ": 28.7766113,
|
|
"rotX": 359.7756,
|
|
"rotY": 270.031128,
|
|
"rotZ": 0.016791949,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pantalone",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"82025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 295603,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2956": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6179d5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.602769,
|
|
"posY": 1.58454418,
|
|
"posZ": 28.7766075,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168733746,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Medico Della Peste",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"82024\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 295602,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2956": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9c9196",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.602769,
|
|
"posY": 1.59418106,
|
|
"posZ": 28.7766075,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0168752987,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bauta",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"82023\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 295601,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2956": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "4d3a26",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.69646466,
|
|
"posY": 3.66258717,
|
|
"posZ": 14.278758,
|
|
"rotX": 359.9675,
|
|
"rotY": 224.997955,
|
|
"rotZ": 0.07091103,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cnidathqua",
|
|
"Description": "Monster. Ancient One. Elite.",
|
|
"GMNotes": "{\n \"id\": \"82027\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Ancient One. Elite.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 3700,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "a49fb6",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.72475982,
|
|
"posY": 1.61837292,
|
|
"posZ": 0.373313427,
|
|
"rotX": -1.02299531E-07,
|
|
"rotY": 179.95752,
|
|
"rotZ": 1.58863E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agenda Deck",
|
|
"Description": "Carnevale of Horrors",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": true,
|
|
"DeckIDs": [
|
|
269803,
|
|
269802,
|
|
380301
|
|
],
|
|
"CustomDeck": {
|
|
"2698": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
},
|
|
"3803": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "92e6b7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 27.407402,
|
|
"posY": 1.51493168,
|
|
"posZ": 0.181117237,
|
|
"rotX": 0.009901583,
|
|
"rotY": 179.997787,
|
|
"rotZ": 0.0789340958,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chaos in the Carnevale",
|
|
"Description": "Agenda 3",
|
|
"GMNotes": "{\n \"id\": \"82004\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 3,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 269803,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b4b83b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 24.4682827,
|
|
"posY": 1.51917338,
|
|
"posZ": 0.341863126,
|
|
"rotX": 0.014265894,
|
|
"rotY": 179.999374,
|
|
"rotZ": 0.07856076,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Shadow of the Eclipse",
|
|
"Description": "Agenda 2",
|
|
"GMNotes": "{\n \"id\": \"82003\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 3,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 269802,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cfc97a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -2.7247138,
|
|
"posY": 1.66373229,
|
|
"posZ": 0.3733145,
|
|
"rotX": 0.0194523185,
|
|
"rotY": 179.987442,
|
|
"rotZ": 0.07924577,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Festivities Begin",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "{\n \"id\": \"82002\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 8,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 380301,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"3803": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "a5891b",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -3.55389929,
|
|
"posY": 1.58300042,
|
|
"posZ": -14.7800045,
|
|
"rotX": -2.56825984E-07,
|
|
"rotY": 270.002625,
|
|
"rotZ": 4.16922035E-07,
|
|
"scaleX": 2.2,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.2
|
|
},
|
|
"Nickname": "Carnevale of Horrors",
|
|
"Description": "click to set chaos token difficulty",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/",
|
|
"ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "name = 'Carnevale of Horrors'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "aa7abc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.95603752,
|
|
"posY": 1.59660506,
|
|
"posZ": -10.4411964,
|
|
"rotX": -4.64326178E-07,
|
|
"rotY": 270.0,
|
|
"rotZ": 5.216236E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "Carnevale of Horrors",
|
|
"GMNotes": "{\"type\": \"ScenarioReference\", \"class\": \"Mythos\", \"tokens\": {\"back\": {\"Cultist\": {\"description\": \"Reveal another token. If you fail this test, draw the top card of the encounter deck.\", \"modifier\": 0}, \"Elder Thing\": {\"description\": \"-6. If you fail and Cnidathqua is in play, it attacks you.\", \"modifier\": -6}, \"Skull\": {\"description\": \"-2. Additional -1 for each Innocent Reveler underneath the act or agenda decks.\", \"modifier\": -2}, \"Tablet\": {\"description\": \"-4. Deal 1 damage or 1 horror to the nearest Innocent Reveler in play.\", \"modifier\": -4}}, \"front\": {\"Cultist\": {\"description\": \"Reveal another token. If you fail this test, draw the top card of the encounter deck.\", \"modifier\": 0}, \"Elder Thing\": {\"description\": \"-4. If you fail and Cnidathqua is in play, it attacks you.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-2. Additional -1 for each Innocent Reveler underneath the agenda deck.\", \"modifier\": -2}, \"Tablet\": {\"description\": \"-3. If you fail, deal 1 damage or 1 horror to the nearest Innocent Reveler in play.\", \"modifier\": -3}}}, \"id\": \"82001\"}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 234200,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2342": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bb43b8",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -11.5594234,
|
|
"posY": 1.57462883,
|
|
"posZ": 11.8573322,
|
|
"rotX": -4.926638E-08,
|
|
"rotY": 270.00766,
|
|
"rotZ": -4.22517443E-09,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Masked Carnevale-Goer",
|
|
"Description": "Carnevale of Horrors",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
234616,
|
|
234620,
|
|
234621,
|
|
234622,
|
|
234618,
|
|
234619,
|
|
234617
|
|
],
|
|
"CustomDeck": {
|
|
"2346": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "be4dc6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.1794186,
|
|
"posY": 1.52068734,
|
|
"posZ": 8.88439751,
|
|
"rotX": 359.918671,
|
|
"rotY": 270.0005,
|
|
"rotZ": 0.0165567044,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Masked Carnevale-Goer",
|
|
"Description": "Carnevale.",
|
|
"GMNotes": "{\n \"id\": \"82017\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Servitor. Elite.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 234616,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2346": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "659820",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 23.3176689,
|
|
"posY": 1.64576364,
|
|
"posZ": 8.302763,
|
|
"rotX": 4.432067,
|
|
"rotY": 270.0642,
|
|
"rotZ": 0.01653068,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Masked Carnevale-Goer",
|
|
"Description": "Carnevale.",
|
|
"GMNotes": "{\n \"id\": \"82021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander. Carnevale.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 234620,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2346": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "105277",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 21.99391,
|
|
"posY": 1.52614319,
|
|
"posZ": 12.0150309,
|
|
"rotX": 359.921478,
|
|
"rotY": 269.997864,
|
|
"rotZ": 0.0191307142,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Masked Carnevale-Goer",
|
|
"Description": "Carnevale.",
|
|
"GMNotes": "{\n \"id\": \"82021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander. Carnevale.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 234621,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2346": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "44845f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.6248846,
|
|
"posY": 1.809609,
|
|
"posZ": 11.7102118,
|
|
"rotX": 359.696228,
|
|
"rotY": 270.002838,
|
|
"rotZ": 358.658,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Masked Carnevale-Goer",
|
|
"Description": "Carnevale.",
|
|
"GMNotes": "{\n \"id\": \"82021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander. Carnevale.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 234622,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2346": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f64f68",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.6929932,
|
|
"posY": 1.67383718,
|
|
"posZ": 14.665061,
|
|
"rotX": 359.920258,
|
|
"rotY": 270.0008,
|
|
"rotZ": 0.0164641943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Masked Carnevale-Goer",
|
|
"Description": "Carnevale.",
|
|
"GMNotes": "{\n \"id\": \"82019\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Sorcerer. Elite.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 234618,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2346": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0a2381",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.666996,
|
|
"posY": 1.81943834,
|
|
"posZ": 14.7776384,
|
|
"rotX": 359.9322,
|
|
"rotY": 269.997681,
|
|
"rotZ": 359.952057,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Masked Carnevale-Goer",
|
|
"Description": "Carnevale.",
|
|
"GMNotes": "{\n \"id\": \"82020\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Cultist. Elite.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 234619,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2346": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1d6b52",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.7733593,
|
|
"posY": 1.83848667,
|
|
"posZ": 14.4642506,
|
|
"rotX": 359.9358,
|
|
"rotY": 269.9989,
|
|
"rotZ": 359.824066,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Masked Carnevale-Goer",
|
|
"Description": "Carnevale.",
|
|
"GMNotes": "{\n \"id\": \"82018\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Lodge. Elite.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 234617,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2346": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "c1d121",
|
|
"Name": "Custom_PDF",
|
|
"Transform": {
|
|
"posX": -1.46557164,
|
|
"posY": 1.48149931,
|
|
"posZ": -26.9304218,
|
|
"rotX": -1.51085064E-08,
|
|
"rotY": 269.997162,
|
|
"rotZ": 1.610965E-07,
|
|
"scaleX": 2.991886,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.991886
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomPDF": {
|
|
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1687120954015129513/9E63098DAB001506FEE2A48701CE0F61A29D7B94/",
|
|
"PDFPassword": "",
|
|
"PDFPage": 0,
|
|
"PDFPageOffset": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "eb8aad",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.5609674,
|
|
"posY": 1.53360486,
|
|
"posZ": 6.366817,
|
|
"rotX": -1.20276326E-07,
|
|
"rotY": 269.986969,
|
|
"rotZ": 6.84049937E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Canal-side",
|
|
"Description": "Venice.",
|
|
"GMNotes": "{\n \"id\": \"82009\",\n \"type\": \"Location\",\n \"traits\": \"Venice.\",\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"icons\": \"\",\n \"connections\": \"\",\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 234508,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
],
|
|
"AttachedDecals": [
|
|
{
|
|
"Transform": {
|
|
"posX": -0.0021877822,
|
|
"posY": -0.08963572,
|
|
"posZ": -0.00288731651,
|
|
"rotX": 270.0,
|
|
"rotY": 359.869568,
|
|
"rotZ": 0.0,
|
|
"scaleX": 2.00000215,
|
|
"scaleY": 2.00000238,
|
|
"scaleZ": 2.00000262
|
|
},
|
|
"CustomDecal": {
|
|
"Name": "dunwich_back",
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
|
|
"Size": 7.4
|
|
}
|
|
}
|
|
]
|
|
} |