26042 lines
1000 KiB
JSON
26042 lines
1000 KiB
JSON
{
|
|
"GUID": "4c173f",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 12.25,
|
|
"posY": 1.481499,
|
|
"posZ": 3.986,
|
|
"rotX": 1.20693722E-08,
|
|
"rotY": 269.9998,
|
|
"rotZ": -2.06291269E-08,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.2,
|
|
"scaleZ": 2.46
|
|
},
|
|
"Nickname": "The Labyrinths of Lunacy",
|
|
"Description": "Beyond the Veil",
|
|
"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/798737729142912455/15B44AE6487546376FD9DED67A1BC9D613163511/",
|
|
"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\":{\"14808b\":{\"lock\":false,\"pos\":{\"x\":3.41869044303894,\"y\":1.28437542915344,\"z\":-24.9040718078613},\"rot\":{\"x\":0.0799649506807327,\"y\":89.9995422363281,\"z\":359.983093261719}},\"2ea2a2\":{\"lock\":false,\"pos\":{\"x\":3.46256279945374,\"y\":1.2856125831604,\"z\":-20.4963111877441},\"rot\":{\"x\":0.0799649506807327,\"y\":89.9990615844727,\"z\":359.983093261719}},\"76b476\":{\"lock\":false,\"pos\":{\"x\":3.36501669883728,\"y\":1.28312563896179,\"z\":-29.4009819030762},\"rot\":{\"x\":0.0799627229571342,\"y\":89.9967651367188,\"z\":359.983062744141}},\"79b534\":{\"lock\":false,\"pos\":{\"x\":-1.14386463165283,\"y\":1.29200720787048,\"z\":-20.5858478546143},\"rot\":{\"x\":0.0799693316221237,\"y\":90.0000152587891,\"z\":359.983093261719}},\"c352ac\":{\"lock\":false,\"pos\":{\"x\":-1.22769546508789,\"y\":1.28950834274292,\"z\":-29.4703197479248},\"rot\":{\"x\":0.0799669772386551,\"y\":89.9994888305664,\"z\":359.983093261719}},\"c7c4c1\":{\"lock\":false,\"pos\":{\"x\":-1.03725624084473,\"y\":1.29063451290131,\"z\":-24.7441463470459},\"rot\":{\"x\":0.079962931573391,\"y\":89.9992523193359,\"z\":359.983093261719}},\"cd5dde\":{\"lock\":false,\"pos\":{\"x\":-10.0876741409302,\"y\":1.48784339427948,\"z\":-26.2493495941162},\"rot\":{\"x\":359.920135498047,\"y\":270.000122070313,\"z\":0.016872052103281}},\"f4dcee\":{\"lock\":false,\"pos\":{\"x\":-3.75470089912415,\"y\":1.58234548568726,\"z\":-14.8894033432007},\"rot\":{\"x\":359.919738769531,\"y\":270.003631591797,\"z\":0.0168327763676643}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "14808b",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": 3.41896558,
|
|
"posY": 1.29646492,
|
|
"posZ": -24.904129,
|
|
"rotX": 8.257534E-09,
|
|
"rotY": 89.99954,
|
|
"rotZ": 9.1381753E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Single Group B",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"b": 0.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function 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 onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n 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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\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()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) 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.25 * 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\r\n objPos.z = objPos.z * globalScaleFactor\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) 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=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\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()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, 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)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == 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 memoryList[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 self.editButton({index=index, color=color})\r\n memoryList[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 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\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\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 end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\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,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,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,\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 deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\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\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\":{\"018291\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9646,\"z\":0.0802}},\"300c56\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9967,\"z\":0.0803}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"99eeeb\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9983,\"z\":0.0169}},\"9f6ed8\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"a5ba22\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"aa6ad6\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4411},\"rot\":{\"x\":359.9197,\"y\":269.9983,\"z\":0.0168}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "018291",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.68850017,
|
|
"posY": 1.61837292,
|
|
"posZ": -5.048501,
|
|
"rotX": -5.85843978E-08,
|
|
"rotY": 179.9646,
|
|
"rotZ": -1.99537133E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act Deck",
|
|
"Description": "The Labyrinths of Lunacy Single Group B",
|
|
"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": true,
|
|
"DeckIDs": [
|
|
12314,
|
|
12311,
|
|
12307
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "318613",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -51.4327965,
|
|
"posY": 1.06138039,
|
|
"posZ": 20.9896,
|
|
"rotX": -6.072141E-07,
|
|
"rotY": 89.9999542,
|
|
"rotZ": 3.91701178E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Escape ",
|
|
"Description": "Act 3",
|
|
"GMNotes": "{\n \"id\": \"70015\",\n \"type\": \"Act\",\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": 12314,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2c450f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 10.2088995,
|
|
"posY": 1.031709,
|
|
"posZ": -5.52045345,
|
|
"rotX": -0.0004157994,
|
|
"rotY": 180.019073,
|
|
"rotZ": -0.00038394038,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Seeping Death (Group B)",
|
|
"Description": "Act 2",
|
|
"GMNotes": "{\n \"id\": \"70012\",\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": 12311,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "02cc53",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 21.74739,
|
|
"posY": 1.677686,
|
|
"posZ": -10.8052187,
|
|
"rotX": 0.0115384534,
|
|
"rotY": 179.997208,
|
|
"rotZ": 0.0777768,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Watery Grave (Group B)",
|
|
"Description": "Act 1",
|
|
"GMNotes": "{\n \"id\": \"70008\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"clueThresholdPerInvestigator\": 2,\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": 12307,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "300c56",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.72470021,
|
|
"posY": 1.61837292,
|
|
"posZ": 0.373300225,
|
|
"rotX": -9.385225E-09,
|
|
"rotY": 179.996689,
|
|
"rotZ": 5.18262233E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agenda Deck",
|
|
"Description": "The Labyrinths of Lunacy Single Group B",
|
|
"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": true,
|
|
"DeckIDs": [
|
|
12305,
|
|
12304,
|
|
12302
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "c30682",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -25.8253517,
|
|
"posY": 1.06138027,
|
|
"posZ": 38.9641876,
|
|
"rotX": -5.977163E-07,
|
|
"rotY": 180.000214,
|
|
"rotZ": 3.81947359E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Mastermind",
|
|
"Description": "Agenda 3",
|
|
"GMNotes": "{\n \"id\": \"70006\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 7,\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": 12305,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8d52dd",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -25.9357567,
|
|
"posY": 1.20038235,
|
|
"posZ": 39.2535973,
|
|
"rotX": -0.000432104222,
|
|
"rotY": 179.998566,
|
|
"rotZ": 0.0008023538,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agony and Despair",
|
|
"Description": "Agenda 2",
|
|
"GMNotes": "{\n \"id\": \"70004\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 7,\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": 12304,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bce775",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 21.8359814,
|
|
"posY": 1.67855644,
|
|
"posZ": -6.755071,
|
|
"rotX": 0.008892534,
|
|
"rotY": 179.997116,
|
|
"rotZ": 0.0614743829,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Awakening",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "{\n \"id\": \"70003\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 6,\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": 12302,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"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": "372583",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": 37.985672,
|
|
"posY": 3.29153776,
|
|
"posZ": -7.789857,
|
|
"rotX": 359.9851,
|
|
"rotY": 0.00435258541,
|
|
"rotZ": 359.938354,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Set-Aside Locations",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"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,
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "839314",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.66237,
|
|
"posY": 3.508583,
|
|
"posZ": -8.228242,
|
|
"rotX": 357.48587,
|
|
"rotY": 269.942871,
|
|
"rotZ": 1.71466255,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Decay",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70029\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12328,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774c0b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.538517,
|
|
"posY": 3.48395348,
|
|
"posZ": 0.6072215,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168661959,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abandoned Warehouse",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70032\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\"\n },\n \"locationBack\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\",\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": 12331,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8d4c1e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.6962261,
|
|
"posY": 3.48286462,
|
|
"posZ": -2.34567428,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0168705061,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Poison",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70031\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\n },\n \"locationBack\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\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": 12330,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6c7570",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.78567,
|
|
"posY": 3.48028827,
|
|
"posZ": -10.6671362,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.016867375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Regret",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70024\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\",\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": 12323,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5f58cd",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 32.0402069,
|
|
"posY": 3.47957635,
|
|
"posZ": -5.585189,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168685075,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"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": [
|
|
12317,
|
|
12316,
|
|
12315
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "2ce8bf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 4.23194,
|
|
"posY": 1.031291,
|
|
"posZ": 4.65191174,
|
|
"rotX": 359.978333,
|
|
"rotY": 270.008942,
|
|
"rotZ": 359.993958,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70018\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": true,
|
|
"Hands": true,
|
|
"CardID": 12317,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8fcb18",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 4.278675,
|
|
"posY": 1.03195429,
|
|
"posZ": 7.136062,
|
|
"rotX": 0.005884989,
|
|
"rotY": 269.971252,
|
|
"rotZ": 359.982819,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70017\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": true,
|
|
"Hands": true,
|
|
"CardID": 12316,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f97fe2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 4.35326433,
|
|
"posY": 1.14595437,
|
|
"posZ": 7.05320454,
|
|
"rotX": -0.00226479466,
|
|
"rotY": 270.0046,
|
|
"rotZ": 1.50677872,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70016\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": true,
|
|
"Hands": true,
|
|
"CardID": 12315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "76a7f5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 29.2708988,
|
|
"posY": 3.545433,
|
|
"posZ": -7.372909,
|
|
"rotX": 0.4738458,
|
|
"rotY": 269.973724,
|
|
"rotZ": 355.9659,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rot",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70030\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\",\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": 12329,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c22a79",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 28.8971767,
|
|
"posY": 3.48086715,
|
|
"posZ": -4.78153753,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0168725159,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"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": [
|
|
12324,
|
|
12325,
|
|
12326
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "d13692",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 4.157674,
|
|
"posY": 1.03260434,
|
|
"posZ": -5.54292774,
|
|
"rotX": 0.0192153,
|
|
"rotY": 270.0701,
|
|
"rotZ": 359.936432,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70025\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Diamond\",\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": true,
|
|
"Hands": true,
|
|
"CardID": 12324,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5eb4c2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 4.115971,
|
|
"posY": 1.18805337,
|
|
"posZ": -5.70437145,
|
|
"rotX": 359.98233,
|
|
"rotY": 270.027954,
|
|
"rotZ": 359.2211,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70026\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Star\",\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": true,
|
|
"Hands": true,
|
|
"CardID": 12325,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "323435",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 4.246885,
|
|
"posY": 1.19408929,
|
|
"posZ": -5.54449,
|
|
"rotX": 0.00275225355,
|
|
"rotY": 270.0342,
|
|
"rotZ": 0.0230518561,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70027\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Crescent\",\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": true,
|
|
"Hands": true,
|
|
"CardID": 12326,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "945939",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 29.1706886,
|
|
"posY": 3.56947613,
|
|
"posZ": -7.70177126,
|
|
"rotX": 1.28734708,
|
|
"rotY": 269.978729,
|
|
"rotZ": 358.7333,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Hunger",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70028\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12327,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "38826f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 29.3933315,
|
|
"posY": 3.480069,
|
|
"posZ": -10.2015715,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168679319,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Night",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70023\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\",\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": 12322,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "4e91a9",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 118.964661,
|
|
"posY": 2.50373459,
|
|
"posZ": -65.72195,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000458,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductors",
|
|
"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": [
|
|
265113,
|
|
265113
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "598744",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 114.1994,
|
|
"posY": 1.415566,
|
|
"posZ": -42.9447,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000427,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 114.105927,
|
|
"posY": 1.56090713,
|
|
"posZ": -43.0390663,
|
|
"rotX": 359.983521,
|
|
"rotY": 270.016632,
|
|
"rotZ": 359.9719,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 118.780312,
|
|
"posY": 2.49737215,
|
|
"posZ": -61.8367958,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002563,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rot Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70043\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265104,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7399a5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 119.23513,
|
|
"posY": 2.496812,
|
|
"posZ": -64.31887,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000244,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Key of Mysteries",
|
|
"Description": "Item. Key.",
|
|
"GMNotes": "{\n \"id\": \"70040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\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": 265101,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 119.411568,
|
|
"posY": 2.49912381,
|
|
"posZ": -56.636322,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002716,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Decay Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70047\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265108,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bc2822",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 124.02626,
|
|
"posY": 2.398194,
|
|
"posZ": -67.12005,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002625,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunger Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70045\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265106,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 125.505295,
|
|
"posY": 3.64295149,
|
|
"posZ": -67.04814,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0028,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Pet",
|
|
"Description": "You Are Not Its First Victim, Or Its Last",
|
|
"GMNotes": "{\n \"id\": \"70050\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Elite.\",\n \"victory\": 2,\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": 265111,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 124.546219,
|
|
"posY": 3.642976,
|
|
"posZ": -60.8289566,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000336,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon",
|
|
"Description": "Your Anguish Is My Power",
|
|
"GMNotes": "{\n \"id\": \"70048\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Servitor. Elite.\",\n \"victory\": 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": 265109,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 124.526085,
|
|
"posY": 3.64296436,
|
|
"posZ": -57.9982567,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0003,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mysterious Syringe",
|
|
"Description": "Item.",
|
|
"GMNotes": "{\n \"id\": \"70041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\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": 265102,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1199989,
|
|
"posY": 1.53360486,
|
|
"posZ": 7.5700016,
|
|
"rotX": 4.09793159E-08,
|
|
"rotY": 270.000061,
|
|
"rotZ": -1.96238048E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Note",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70039\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "99eeeb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -50.9244,
|
|
"posY": 1.56360507,
|
|
"posZ": 8.178398,
|
|
"rotX": 5.33966E-09,
|
|
"rotY": 269.9983,
|
|
"rotZ": 3.50474636E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"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": true,
|
|
"Hands": true,
|
|
"CardID": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9f6ed8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1200943,
|
|
"posY": 1.53360486,
|
|
"posZ": -7.700003,
|
|
"rotX": -2.6641036E-08,
|
|
"rotY": 269.999939,
|
|
"rotZ": -5.49820456E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Sorrows",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70021\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\",\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": 12320,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a5ba22",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.92760015,
|
|
"posY": 1.71946764,
|
|
"posZ": 5.757102,
|
|
"rotX": 1.24259458E-07,
|
|
"rotY": 270.000031,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
265121,
|
|
265121,
|
|
265121,
|
|
265122,
|
|
265122,
|
|
265122,
|
|
265119,
|
|
265119,
|
|
265119,
|
|
265118,
|
|
265118,
|
|
265118,
|
|
265117,
|
|
265117,
|
|
265117,
|
|
265116,
|
|
265116,
|
|
265116,
|
|
265115,
|
|
265115,
|
|
265115,
|
|
265114,
|
|
265114,
|
|
265114
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.089371,
|
|
"posY": 1.39607489,
|
|
"posZ": 2.254506,
|
|
"rotX": 359.989929,
|
|
"rotY": 270.000031,
|
|
"rotZ": 359.9876,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70060\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265121,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d50777",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.856,
|
|
"posY": 1.54211807,
|
|
"posZ": 2.49619722,
|
|
"rotX": 359.989929,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.987579,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70060\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265121,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "86ca2a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.856018,
|
|
"posY": 1.56403816,
|
|
"posZ": 2.49620557,
|
|
"rotX": 359.986755,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.982239,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70060\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265121,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3bf255",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.40837359,
|
|
"posZ": -5.14877033,
|
|
"rotX": 359.9848,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.983429,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2927c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.55442476,
|
|
"posZ": -5.18531656,
|
|
"rotX": 359.98175,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.969971,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.306816,
|
|
"posY": 1.57090247,
|
|
"posZ": -4.69011068,
|
|
"rotX": 359.9873,
|
|
"rotY": 269.999634,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.267433,
|
|
"posY": 1.40541661,
|
|
"posZ": 5.20540237,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.9844,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8b2c36",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.61058,
|
|
"posY": 1.5512836,
|
|
"posZ": 5.16832256,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6fc896",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.610588,
|
|
"posY": 1.56516159,
|
|
"posZ": 5.16833353,
|
|
"rotX": 359.9869,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.984741,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.021744,
|
|
"posY": 1.40585113,
|
|
"posZ": 3.80202127,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4fa340",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.785805,
|
|
"posY": 1.45584965,
|
|
"posZ": 3.75804973,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0872f7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.170105,
|
|
"posY": 1.50584924,
|
|
"posZ": 3.71445131,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.005432,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.692337,
|
|
"posY": 1.40558171,
|
|
"posZ": 5.06883669,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999939,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "47bd50",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.103378,
|
|
"posY": 1.54470325,
|
|
"posZ": 5.00585747,
|
|
"rotX": 359.987183,
|
|
"rotY": 269.989258,
|
|
"rotZ": 359.989227,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400818,
|
|
"posY": 1.56518042,
|
|
"posZ": 4.86478567,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bf90c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.859726,
|
|
"posY": 2.85669827,
|
|
"posZ": 4.73798227,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.777832,
|
|
"posY": 2.59425187,
|
|
"posZ": 4.79823,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "24e15d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.294968,
|
|
"posY": 2.59410381,
|
|
"posZ": 4.926104,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.116432,
|
|
"posY": 1.57105386,
|
|
"posZ": 4.485176,
|
|
"rotX": 359.990143,
|
|
"rotY": 269.999969,
|
|
"rotZ": 179.987747,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.245293,
|
|
"posY": 1.40459144,
|
|
"posZ": 4.58944225,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.003876,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774f5f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.699791,
|
|
"posY": 1.550271,
|
|
"posZ": 4.99789762,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.0039,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.877541,
|
|
"posY": 1.40432525,
|
|
"posZ": 6.088623,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999542,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d18a7d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400978,
|
|
"posY": 1.45432484,
|
|
"posZ": 5.97300529,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.9995,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7a1943",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400986,
|
|
"posY": 1.60057485,
|
|
"posZ": 5.9730196,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999573,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "aa6ad6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1199951,
|
|
"posY": 1.53360486,
|
|
"posZ": -0.03000003,
|
|
"rotX": 4.7276643E-08,
|
|
"rotY": 269.9997,
|
|
"rotZ": -3.387474E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rain",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70019\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\",\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": 12318,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c69095",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.9560008,
|
|
"posY": 1.59660506,
|
|
"posZ": -10.4411049,
|
|
"rotX": 2.77947727E-08,
|
|
"rotY": 269.99823,
|
|
"rotZ": -4.98812831E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "{\"type\": \"ScenarioReference\", \"class\": \"Mythos\", \"tokens\": {\"back\": {\"Cultist\": {\"description\": \"-3. Place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. Discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token. If you fail, you must either take 1 damage or 1 horror.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. Lose 2 resources.\", \"modifier\": -4}}, \"front\": {\"Cultist\": {\"description\": \"-3. If you fail, place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. If you fail, discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. If you fail, lose 2 resources.\", \"modifier\": -4}}}, \"id\": \"70001\"}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "2ea2a2",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": 3.46283579,
|
|
"posY": 1.296465,
|
|
"posZ": -20.4963684,
|
|
"rotX": -6.992186E-07,
|
|
"rotY": 89.99899,
|
|
"rotZ": -9.55025143E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Single Group A",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"b": 0.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function 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 onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n 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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\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()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) 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.25 * 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\r\n objPos.z = objPos.z * globalScaleFactor\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) 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=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\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()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, 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)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == 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 memoryList[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 self.editButton({index=index, color=color})\r\n memoryList[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 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\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\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 end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\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,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,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,\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 deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\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\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\":{\"148730\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6766,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9937,\"z\":0.0169}},\"300c56\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0803}},\"66b85c\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.7397,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9961,\"z\":180.0168}},\"6bb098\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9947,\"z\":0.0803}},\"7399a5\":{\"lock\":false,\"pos\":{\"x\":-11.6077,\"y\":1.6725,\"z\":10.5839},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-12.1298,\"y\":1.6721,\"z\":6.8296},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0003,\"z\":0.0168}},\"cf5c1d\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":0.0169}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "148730",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -17.1199951,
|
|
"posY": 1.55537271,
|
|
"posZ": -0.0299997125,
|
|
"rotX": -9.970379E-08,
|
|
"rotY": 269.993622,
|
|
"rotZ": 3.479419E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "The Labyrinths of Lunacy Single Group A",
|
|
"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": [
|
|
12315,
|
|
12317,
|
|
12316
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "f97fe2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.6474257,
|
|
"posY": 1.53735852,
|
|
"posZ": 6.001896,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.993774,
|
|
"rotZ": 0.0168811977,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70016\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2ce8bf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 13.160675,
|
|
"posY": 1.53587341,
|
|
"posZ": 3.38926983,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.016870195,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70018\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12317,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8fcb18",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1182232,
|
|
"posY": 1.83086348,
|
|
"posZ": -0.0316372663,
|
|
"rotX": 358.581726,
|
|
"rotY": 269.979462,
|
|
"rotZ": 1.26306522,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70017\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12316,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "300c56",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.72470021,
|
|
"posY": 1.61837292,
|
|
"posZ": 0.3733003,
|
|
"rotX": 1.47899657E-08,
|
|
"rotY": 180.000015,
|
|
"rotZ": 1.00006163E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agenda Deck",
|
|
"Description": "The Labyrinths of Lunacy Single Group A",
|
|
"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": true,
|
|
"DeckIDs": [
|
|
12305,
|
|
12304,
|
|
12302
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "c30682",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -25.8253517,
|
|
"posY": 1.06138027,
|
|
"posZ": 38.9641876,
|
|
"rotX": -5.977163E-07,
|
|
"rotY": 180.000214,
|
|
"rotZ": 3.81947359E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Mastermind",
|
|
"Description": "Agenda 3",
|
|
"GMNotes": "{\n \"id\": \"70006\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 7,\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": 12305,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8d52dd",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -25.9357567,
|
|
"posY": 1.20038235,
|
|
"posZ": 39.2535973,
|
|
"rotX": -0.000432104222,
|
|
"rotY": 179.998566,
|
|
"rotZ": 0.0008023538,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agony and Despair",
|
|
"Description": "Agenda 2",
|
|
"GMNotes": "{\n \"id\": \"70004\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 7,\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": 12304,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bce775",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -25.5488377,
|
|
"posY": 1.22383022,
|
|
"posZ": 38.8992271,
|
|
"rotX": 2.82206129E-05,
|
|
"rotY": 180.00029,
|
|
"rotZ": -0.0007466273,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Awakening",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "{\n \"id\": \"70003\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 6,\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": 12302,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "66b85c",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.92780042,
|
|
"posY": 1.71946764,
|
|
"posZ": 5.757201,
|
|
"rotX": -4.07078346E-07,
|
|
"rotY": 269.996155,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
265121,
|
|
265121,
|
|
265121,
|
|
265122,
|
|
265122,
|
|
265122,
|
|
265119,
|
|
265119,
|
|
265119,
|
|
265118,
|
|
265118,
|
|
265118,
|
|
265117,
|
|
265117,
|
|
265117,
|
|
265116,
|
|
265116,
|
|
265116,
|
|
265115,
|
|
265115,
|
|
265115,
|
|
265114,
|
|
265114,
|
|
265114
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.089371,
|
|
"posY": 1.39607489,
|
|
"posZ": 2.254506,
|
|
"rotX": 359.989929,
|
|
"rotY": 270.000031,
|
|
"rotZ": 359.9876,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70060\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265121,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d50777",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.856,
|
|
"posY": 1.54211807,
|
|
"posZ": 2.49619722,
|
|
"rotX": 359.989929,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.987579,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70060\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265121,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "86ca2a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.856018,
|
|
"posY": 1.56403816,
|
|
"posZ": 2.49620557,
|
|
"rotX": 359.986755,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.982239,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70060\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265121,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3bf255",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.40837359,
|
|
"posZ": -5.14877033,
|
|
"rotX": 359.9848,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.983429,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2927c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.55442476,
|
|
"posZ": -5.18531656,
|
|
"rotX": 359.98175,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.969971,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.306816,
|
|
"posY": 1.57090247,
|
|
"posZ": -4.69011068,
|
|
"rotX": 359.9873,
|
|
"rotY": 269.999634,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.267433,
|
|
"posY": 1.40541661,
|
|
"posZ": 5.20540237,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.9844,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8b2c36",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.61058,
|
|
"posY": 1.5512836,
|
|
"posZ": 5.16832256,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6fc896",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.610588,
|
|
"posY": 1.56516159,
|
|
"posZ": 5.16833353,
|
|
"rotX": 359.9869,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.984741,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.021744,
|
|
"posY": 1.40585113,
|
|
"posZ": 3.80202127,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4fa340",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.785805,
|
|
"posY": 1.45584965,
|
|
"posZ": 3.75804973,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0872f7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.170105,
|
|
"posY": 1.50584924,
|
|
"posZ": 3.71445131,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.005432,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.692337,
|
|
"posY": 1.40558171,
|
|
"posZ": 5.06883669,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999939,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "47bd50",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.103378,
|
|
"posY": 1.54470325,
|
|
"posZ": 5.00585747,
|
|
"rotX": 359.987183,
|
|
"rotY": 269.989258,
|
|
"rotZ": 359.989227,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400818,
|
|
"posY": 1.56518042,
|
|
"posZ": 4.86478567,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bf90c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.859726,
|
|
"posY": 2.85669827,
|
|
"posZ": 4.73798227,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.777832,
|
|
"posY": 2.59425187,
|
|
"posZ": 4.79823,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "24e15d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.294968,
|
|
"posY": 2.59410381,
|
|
"posZ": 4.926104,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.116432,
|
|
"posY": 1.57105386,
|
|
"posZ": 4.485176,
|
|
"rotX": 359.990143,
|
|
"rotY": 269.999969,
|
|
"rotZ": 179.987747,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.245293,
|
|
"posY": 1.40459144,
|
|
"posZ": 4.58944225,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.003876,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774f5f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.699791,
|
|
"posY": 1.550271,
|
|
"posZ": 4.99789762,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.0039,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.877541,
|
|
"posY": 1.40432525,
|
|
"posZ": 6.088623,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999542,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d18a7d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400978,
|
|
"posY": 1.45432484,
|
|
"posZ": 5.97300529,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.9995,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7a1943",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400986,
|
|
"posY": 1.60057485,
|
|
"posZ": 5.9730196,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999573,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "6bb098",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.68850017,
|
|
"posY": 1.61837292,
|
|
"posZ": -5.04850149,
|
|
"rotX": -3.6847517E-08,
|
|
"rotY": 179.994644,
|
|
"rotZ": -2.16550919E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act Deck",
|
|
"Description": "The Labyrinths of Lunacy Single Group A",
|
|
"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": true,
|
|
"DeckIDs": [
|
|
12314,
|
|
12310,
|
|
12306
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "318613",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -16.893158,
|
|
"posY": 1.06138027,
|
|
"posZ": 33.9050636,
|
|
"rotX": -3.47957524E-07,
|
|
"rotY": 179.990662,
|
|
"rotZ": 9.022214E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Escape ",
|
|
"Description": "Act 3",
|
|
"GMNotes": "{\n \"id\": \"70015\",\n \"type\": \"Act\",\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": 12314,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7d3634",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -25.2336178,
|
|
"posY": 1.06138015,
|
|
"posZ": 35.41119,
|
|
"rotX": -2.52295263E-06,
|
|
"rotY": 179.903137,
|
|
"rotZ": -2.93713128E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Distortions in Time (Group A)",
|
|
"Description": "Act 2",
|
|
"GMNotes": "{\n \"id\": \"70011\",\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": 12310,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ae9723",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -24.7399979,
|
|
"posY": 1.20657778,
|
|
"posZ": 35.4558754,
|
|
"rotX": 0.0002800713,
|
|
"rotY": 179.983826,
|
|
"rotZ": -4.43046774E-05,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sealed In (Group A)",
|
|
"Description": "Act 1",
|
|
"GMNotes": "{\n \"id\": \"70007\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"clueThresholdPerInvestigator\": 2,\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": 12306,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "7399a5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -11.6076927,
|
|
"posY": 1.53360486,
|
|
"posZ": 10.5839062,
|
|
"rotX": 6.07591559E-08,
|
|
"rotY": 270.000244,
|
|
"rotZ": 1.05880982E-09,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Key of Mysteries",
|
|
"Description": "Item. Key.",
|
|
"GMNotes": "{\n \"id\": \"70040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\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": 265101,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -12.1297922,
|
|
"posY": 1.53360486,
|
|
"posZ": 6.829603,
|
|
"rotX": -5.8320464E-09,
|
|
"rotY": 270.000183,
|
|
"rotZ": 3.56725565E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Note",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70039\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"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": "372583",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": 39.1576767,
|
|
"posY": 3.29060721,
|
|
"posZ": -5.16580343,
|
|
"rotX": 359.9933,
|
|
"rotY": -0.000107322157,
|
|
"rotZ": 359.9355,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Set-Aside Locations",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"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,
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "774c0b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.2945213,
|
|
"posY": 3.55052948,
|
|
"posZ": -5.83563,
|
|
"rotX": 1.763565,
|
|
"rotY": 270.068542,
|
|
"rotZ": 6.02724743,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abandoned Warehouse",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70032\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\"\n },\n \"locationBack\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\",\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": 12331,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "323435",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.775404,
|
|
"posY": 3.515024,
|
|
"posZ": -5.20259237,
|
|
"rotX": 2.42908573,
|
|
"rotY": 269.91217,
|
|
"rotZ": 357.622,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70027\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Crescent\",\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": 12326,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d13692",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.0379314,
|
|
"posY": 3.522998,
|
|
"posZ": -5.17208672,
|
|
"rotX": 2.12292957,
|
|
"rotY": 269.907776,
|
|
"rotZ": 356.92157,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70025\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Diamond\",\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": 12324,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "945939",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.2932835,
|
|
"posY": 3.54464221,
|
|
"posZ": -5.349874,
|
|
"rotX": 1.96991873,
|
|
"rotY": 269.925446,
|
|
"rotZ": 357.19397,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Hunger",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70028\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12327,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5eb4c2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.04437,
|
|
"posY": 3.53875375,
|
|
"posZ": -5.5686183,
|
|
"rotX": 2.85988879,
|
|
"rotY": 270.004852,
|
|
"rotZ": 359.3784,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70026\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Star\",\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": 12325,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8d4c1e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.5692482,
|
|
"posY": 3.569668,
|
|
"posZ": -5.556289,
|
|
"rotX": 0.9500356,
|
|
"rotY": 269.9749,
|
|
"rotZ": 358.913849,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Poison",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70031\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\n },\n \"locationBack\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\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": 12330,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "839314",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.9008179,
|
|
"posY": 3.52991557,
|
|
"posZ": -5.55602264,
|
|
"rotX": 2.962749,
|
|
"rotY": 269.974365,
|
|
"rotZ": 359.371155,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Decay",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70029\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12328,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "38826f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.75139,
|
|
"posY": 3.57257533,
|
|
"posZ": -5.705337,
|
|
"rotX": 359.8254,
|
|
"rotY": 269.983582,
|
|
"rotZ": 0.922801554,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Night",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70023\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\",\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": 12322,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9f6ed8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.1221218,
|
|
"posY": 3.51848483,
|
|
"posZ": -6.214652,
|
|
"rotX": 1.80660272,
|
|
"rotY": 270.092834,
|
|
"rotZ": 3.579617,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Sorrows",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70021\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\",\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": 12320,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "76a7f5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.14743,
|
|
"posY": 3.54612565,
|
|
"posZ": -5.635891,
|
|
"rotX": 2.717977,
|
|
"rotY": 269.998,
|
|
"rotZ": 359.967255,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rot",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70030\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\",\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": 12329,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "aa6ad6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 30.7417831,
|
|
"posY": 3.51762176,
|
|
"posZ": -5.33384466,
|
|
"rotX": 2.69817281,
|
|
"rotY": 269.934723,
|
|
"rotZ": 358.2239,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rain",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70019\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\",\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": 12318,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6c7570",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.4199924,
|
|
"posY": 3.56406713,
|
|
"posZ": -5.63867569,
|
|
"rotX": 1.79771674,
|
|
"rotY": 269.9995,
|
|
"rotZ": 359.988953,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Regret",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70024\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\",\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": 12323,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "68a27e",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 115.140579,
|
|
"posY": 2.40535235,
|
|
"posZ": -54.2842751,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000244,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductors",
|
|
"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": [
|
|
265113,
|
|
265113
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "598744",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 105.442314,
|
|
"posY": 1.41625679,
|
|
"posZ": -38.3752,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000366,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 105.448166,
|
|
"posY": 1.56175053,
|
|
"posZ": -38.3265,
|
|
"rotX": 359.9825,
|
|
"rotY": 269.986481,
|
|
"rotZ": 359.987366,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "bc2822",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 114.361862,
|
|
"posY": 2.399167,
|
|
"posZ": -51.80553,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002441,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunger Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70045\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265106,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 115.294174,
|
|
"posY": 2.40007138,
|
|
"posZ": -49.87113,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002533,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Decay Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70047\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265108,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 120.217278,
|
|
"posY": 2.498505,
|
|
"posZ": -60.1935,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002441,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rot Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70043\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265104,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 120.284561,
|
|
"posY": 2.4992764,
|
|
"posZ": -57.5437469,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002563,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Pet",
|
|
"Description": "You Are Not Its First Victim, Or Its Last",
|
|
"GMNotes": "{\n \"id\": \"70050\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Elite.\",\n \"victory\": 2,\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": 265111,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 119.157928,
|
|
"posY": 2.40052247,
|
|
"posZ": -53.1229,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0003,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon",
|
|
"Description": "Your Anguish Is My Power",
|
|
"GMNotes": "{\n \"id\": \"70048\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Servitor. Elite.\",\n \"victory\": 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": 265109,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 119.701279,
|
|
"posY": 2.40174437,
|
|
"posZ": -49.62487,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000244,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mysterious Syringe",
|
|
"Description": "Item.",
|
|
"GMNotes": "{\n \"id\": \"70041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\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": 265102,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "c69095",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.95600128,
|
|
"posY": 1.59660506,
|
|
"posZ": -10.441206,
|
|
"rotX": -1.60426286E-08,
|
|
"rotY": 270.0,
|
|
"rotZ": 2.35898252E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "{\"type\": \"ScenarioReference\", \"class\": \"Mythos\", \"tokens\": {\"back\": {\"Cultist\": {\"description\": \"-3. Place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. Discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token. If you fail, you must either take 1 damage or 1 horror.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. Lose 2 resources.\", \"modifier\": -4}}, \"front\": {\"Cultist\": {\"description\": \"-3. If you fail, place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. If you fail, discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. If you fail, lose 2 resources.\", \"modifier\": -4}}}, \"id\": \"70001\"}",
|
|
"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": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cf5c1d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -50.9244,
|
|
"posY": 1.56360507,
|
|
"posZ": 8.178398,
|
|
"rotX": -5.40652323E-08,
|
|
"rotY": 270.0003,
|
|
"rotZ": -1.32669754E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"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": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "76b476",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": 3.36529326,
|
|
"posY": 1.29646468,
|
|
"posZ": -29.40104,
|
|
"rotX": 3.89204864E-08,
|
|
"rotY": 89.9967957,
|
|
"rotZ": 3.40764416E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Single Group C",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"b": 0.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function 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 onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n 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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\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()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) 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.25 * 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\r\n objPos.z = objPos.z * globalScaleFactor\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) 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=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\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()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, 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)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == 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 memoryList[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 self.editButton({index=index, color=color})\r\n memoryList[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 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\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\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 end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\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,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,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,\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 deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\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\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\":{\"025095\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"300c56\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0144,\"z\":0.0803}},\"38826f\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"61d2f2\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6751,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0101,\"z\":0.0169}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"99a909\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9981,\"z\":0.0803}},\"b59d21\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4411},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "025095",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -50.92445,
|
|
"posY": 1.56360507,
|
|
"posZ": 8.178409,
|
|
"rotX": -1.17719723E-09,
|
|
"rotY": 269.999756,
|
|
"rotZ": -1.89392946E-09,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy Single Group C",
|
|
"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": true,
|
|
"Hands": true,
|
|
"CardID": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "300c56",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.72477722,
|
|
"posY": 1.61837292,
|
|
"posZ": 0.373316556,
|
|
"rotX": -1.27811361E-07,
|
|
"rotY": 180.0144,
|
|
"rotZ": 1.61073743E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agenda Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"SidewaysCard": true,
|
|
"DeckIDs": [
|
|
12305,
|
|
12304,
|
|
12302
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "c30682",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -25.8253517,
|
|
"posY": 1.06138027,
|
|
"posZ": 38.9641876,
|
|
"rotX": -5.977163E-07,
|
|
"rotY": 180.000214,
|
|
"rotZ": 3.81947359E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Mastermind",
|
|
"Description": "Agenda 3",
|
|
"GMNotes": "{\n \"id\": \"70006\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 7,\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": 12305,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8d52dd",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -25.9357567,
|
|
"posY": 1.20038235,
|
|
"posZ": 39.2535973,
|
|
"rotX": -0.000432104222,
|
|
"rotY": 179.998566,
|
|
"rotZ": 0.0008023538,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agony and Despair",
|
|
"Description": "Agenda 2",
|
|
"GMNotes": "{\n \"id\": \"70004\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 7,\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": 12304,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bce775",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 21.6716518,
|
|
"posY": 1.6990937,
|
|
"posZ": 4.24535275,
|
|
"rotX": 0.653278232,
|
|
"rotY": 180.015625,
|
|
"rotZ": 0.08003079,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Awakening",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "{\n \"id\": \"70003\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 6,\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": 12302,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "38826f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.12015,
|
|
"posY": 1.53360486,
|
|
"posZ": -7.699996,
|
|
"rotX": -7.237665E-08,
|
|
"rotY": 269.9997,
|
|
"rotZ": 2.84738348E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Night",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70023\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\",\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": 12322,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"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": "372583",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": 33.12592,
|
|
"posY": 3.2994132,
|
|
"posZ": -3.85547328,
|
|
"rotX": -0.004782517,
|
|
"rotY": 0.00201013638,
|
|
"rotZ": 359.937042,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Set-Aside Locations",
|
|
"Description": "The Labyrinths of Lunacy Single Group C",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"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,
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "8d4c1e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.5727539,
|
|
"posY": 3.5353024,
|
|
"posZ": -14.089633,
|
|
"rotX": 2.43030429,
|
|
"rotY": 270.072327,
|
|
"rotZ": 2.188302,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Poison",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70031\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\n },\n \"locationBack\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\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": 12330,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774c0b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.3851013,
|
|
"posY": 3.47793841,
|
|
"posZ": -11.3334475,
|
|
"rotX": 359.91745,
|
|
"rotY": 269.994751,
|
|
"rotZ": 0.0154597433,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abandoned Warehouse",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70032\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\"\n },\n \"locationBack\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\",\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": 12331,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "76a7f5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 34.3181763,
|
|
"posY": 3.55192161,
|
|
"posZ": -10.0649824,
|
|
"rotX": 357.0621,
|
|
"rotY": 269.988129,
|
|
"rotZ": 0.00939489249,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rot",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70030\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\",\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": 12329,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "682bcd",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 26.714,
|
|
"posY": 3.48342848,
|
|
"posZ": -13.3854418,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.024841,
|
|
"rotZ": 0.0168363973,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"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": [
|
|
12325,
|
|
12324,
|
|
12326
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "5eb4c2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.3513775,
|
|
"posY": 2.271938,
|
|
"posZ": -15.9578934,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70026\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Star\",\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": 12325,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d13692",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 24.7727642,
|
|
"posY": 2.26954675,
|
|
"posZ": -12.6157341,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70025\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Diamond\",\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": 12324,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "323435",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.3928566,
|
|
"posY": 1.67912579,
|
|
"posZ": -15.1889505,
|
|
"rotX": 359.927246,
|
|
"rotY": 269.97287,
|
|
"rotZ": 358.9575,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70027\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Crescent\",\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": 12326,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "839314",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 31.6242046,
|
|
"posY": 3.53982973,
|
|
"posZ": -13.6363354,
|
|
"rotX": 2.500669,
|
|
"rotY": 269.795471,
|
|
"rotZ": 358.146851,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Decay",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70029\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12328,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9f6ed8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 28.5447388,
|
|
"posY": 3.47927237,
|
|
"posZ": -11.4813108,
|
|
"rotX": 359.915741,
|
|
"rotY": 269.858154,
|
|
"rotZ": 0.017681459,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Sorrows",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70021\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\",\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": 12320,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "aa6ad6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.462101,
|
|
"posY": 3.55748415,
|
|
"posZ": -11.9077129,
|
|
"rotX": 2.64409876,
|
|
"rotY": 270.010162,
|
|
"rotZ": 0.0230686571,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rain",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70019\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\",\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": 12318,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "945939",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 27.7517719,
|
|
"posY": 3.47963119,
|
|
"posZ": -14.14752,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.000183,
|
|
"rotZ": 0.0168696456,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Hunger",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70028\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12327,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "7399a5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 111.200363,
|
|
"posY": 2.398962,
|
|
"posZ": -48.58278,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0002,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Key of Mysteries",
|
|
"Description": "Item. Key.",
|
|
"GMNotes": "{\n \"id\": \"70040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\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": 265101,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c0b1fc",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 109.329147,
|
|
"posY": 2.40427518,
|
|
"posZ": -50.7656326,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductors",
|
|
"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": [
|
|
265113,
|
|
265113
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "598744",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 104.158714,
|
|
"posY": 1.41763461,
|
|
"posZ": -42.4382439,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 104.617,
|
|
"posY": 1.562912,
|
|
"posZ": -42.60566,
|
|
"rotX": 359.9874,
|
|
"rotY": 270.001038,
|
|
"rotZ": 359.985718,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 109.674553,
|
|
"posY": 2.39798141,
|
|
"posZ": -50.0393639,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0025,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Decay Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70047\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265108,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bc2822",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 109.430244,
|
|
"posY": 2.39860344,
|
|
"posZ": -47.6108246,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002441,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunger Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70045\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265106,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 112.1399,
|
|
"posY": 2.397568,
|
|
"posZ": -54.5090828,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002441,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rot Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70043\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265104,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 112.080261,
|
|
"posY": 2.39828277,
|
|
"posZ": -51.993618,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0025,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Pet",
|
|
"Description": "You Are Not Its First Victim, Or Its Last",
|
|
"GMNotes": "{\n \"id\": \"70050\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Elite.\",\n \"victory\": 2,\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": 265111,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 114.094879,
|
|
"posY": 2.40076733,
|
|
"posZ": -46.006813,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000122,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon",
|
|
"Description": "Your Anguish Is My Power",
|
|
"GMNotes": "{\n \"id\": \"70048\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Servitor. Elite.\",\n \"victory\": 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": 265109,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 114.264595,
|
|
"posY": 2.42660546,
|
|
"posZ": -44.8615456,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000183,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mysterious Syringe",
|
|
"Description": "Item.",
|
|
"GMNotes": "{\n \"id\": \"70041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\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": 265102,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "61d2f2",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -17.1200886,
|
|
"posY": 1.56018674,
|
|
"posZ": -0.02997585,
|
|
"rotX": 2.684412E-08,
|
|
"rotY": 270.010162,
|
|
"rotZ": -2.92064559E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "The Labyrinths of Lunacy Single Group C",
|
|
"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": [
|
|
12317,
|
|
12316,
|
|
12323,
|
|
12315
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "2ce8bf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.674634,
|
|
"posY": 1.53427577,
|
|
"posZ": -4.5921526,
|
|
"rotX": 359.9227,
|
|
"rotY": 270.0101,
|
|
"rotZ": 0.0166940652,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70018\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12317,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8fcb18",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.1639509,
|
|
"posY": 1.58323693,
|
|
"posZ": -4.666873,
|
|
"rotX": 0.0810070038,
|
|
"rotY": 269.911652,
|
|
"rotZ": 0.136877686,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70017\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12316,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6c7570",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.4056654,
|
|
"posY": 1.72930384,
|
|
"posZ": -5.233029,
|
|
"rotX": 0.08340683,
|
|
"rotY": 270.023224,
|
|
"rotZ": 0.218772218,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Regret",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70024\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\",\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": 12323,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f97fe2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.5038357,
|
|
"posY": 1.78283751,
|
|
"posZ": -6.001105,
|
|
"rotX": 0.07492048,
|
|
"rotY": 270.001129,
|
|
"rotZ": 0.259238183,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70016\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1200447,
|
|
"posY": 1.53360486,
|
|
"posZ": 7.570015,
|
|
"rotX": -7.63202763E-08,
|
|
"rotY": 270.000122,
|
|
"rotZ": -1.09969577E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Note",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70039\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "99a909",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.68857932,
|
|
"posY": 1.61837292,
|
|
"posZ": -5.04848862,
|
|
"rotX": -2.45117668E-08,
|
|
"rotY": 179.998047,
|
|
"rotZ": 1.29096719E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act Deck",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"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": true,
|
|
"DeckIDs": [
|
|
12314,
|
|
12312,
|
|
12309
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "318613",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -52.8227348,
|
|
"posY": 1.06138027,
|
|
"posZ": 19.95879,
|
|
"rotX": -1.0171733E-06,
|
|
"rotY": 89.99951,
|
|
"rotZ": -3.07382066E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Escape ",
|
|
"Description": "Act 3",
|
|
"GMNotes": "{\n \"id\": \"70015\",\n \"type\": \"Act\",\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": 12314,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "119a43",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 7.46902752,
|
|
"posY": 1.03166246,
|
|
"posZ": -7.329862,
|
|
"rotX": -0.0011785978,
|
|
"rotY": 180.027039,
|
|
"rotZ": 359.9932,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Pet (Group C)",
|
|
"Description": "Act 2",
|
|
"GMNotes": "{\n \"id\": \"70013\",\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": 12312,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9e2b9c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 7.878858,
|
|
"posY": 1.1771543,
|
|
"posZ": -6.87013149,
|
|
"rotX": 0.00279826857,
|
|
"rotY": 180.0438,
|
|
"rotZ": 359.993134,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Levers (Group C)",
|
|
"Description": "Act 1",
|
|
"GMNotes": "{\n \"id\": \"70010\",\n \"type\": \"Act\",\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": 12309,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "b59d21",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.927719,
|
|
"posY": 1.71946764,
|
|
"posZ": 5.757148,
|
|
"rotX": -1.302198E-07,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
265121,
|
|
265121,
|
|
265121,
|
|
265122,
|
|
265122,
|
|
265122,
|
|
265119,
|
|
265119,
|
|
265119,
|
|
265118,
|
|
265118,
|
|
265118,
|
|
265117,
|
|
265117,
|
|
265117,
|
|
265116,
|
|
265116,
|
|
265116,
|
|
265115,
|
|
265115,
|
|
265115,
|
|
265114,
|
|
265114,
|
|
265114
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.089371,
|
|
"posY": 1.39607489,
|
|
"posZ": 2.254506,
|
|
"rotX": 359.989929,
|
|
"rotY": 270.000031,
|
|
"rotZ": 359.9876,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70060\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265121,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d50777",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.856,
|
|
"posY": 1.54211807,
|
|
"posZ": 2.49619722,
|
|
"rotX": 359.989929,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.987579,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70060\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265121,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "86ca2a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.856018,
|
|
"posY": 1.56403816,
|
|
"posZ": 2.49620557,
|
|
"rotX": 359.986755,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.982239,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70060\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265121,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3bf255",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.40837359,
|
|
"posZ": -5.14877033,
|
|
"rotX": 359.9848,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.983429,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2927c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.55442476,
|
|
"posZ": -5.18531656,
|
|
"rotX": 359.98175,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.969971,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.306816,
|
|
"posY": 1.57090247,
|
|
"posZ": -4.69011068,
|
|
"rotX": 359.9873,
|
|
"rotY": 269.999634,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.267433,
|
|
"posY": 1.40541661,
|
|
"posZ": 5.20540237,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.9844,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8b2c36",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.61058,
|
|
"posY": 1.5512836,
|
|
"posZ": 5.16832256,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6fc896",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.610588,
|
|
"posY": 1.56516159,
|
|
"posZ": 5.16833353,
|
|
"rotX": 359.9869,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.984741,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.021744,
|
|
"posY": 1.40585113,
|
|
"posZ": 3.80202127,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4fa340",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.785805,
|
|
"posY": 1.45584965,
|
|
"posZ": 3.75804973,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0872f7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.170105,
|
|
"posY": 1.50584924,
|
|
"posZ": 3.71445131,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.005432,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.692337,
|
|
"posY": 1.40558171,
|
|
"posZ": 5.06883669,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999939,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "47bd50",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.103378,
|
|
"posY": 1.54470325,
|
|
"posZ": 5.00585747,
|
|
"rotX": 359.987183,
|
|
"rotY": 269.989258,
|
|
"rotZ": 359.989227,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400818,
|
|
"posY": 1.56518042,
|
|
"posZ": 4.86478567,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bf90c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.859726,
|
|
"posY": 2.85669827,
|
|
"posZ": 4.73798227,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.777832,
|
|
"posY": 2.59425187,
|
|
"posZ": 4.79823,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "24e15d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.294968,
|
|
"posY": 2.59410381,
|
|
"posZ": 4.926104,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.116432,
|
|
"posY": 1.57105386,
|
|
"posZ": 4.485176,
|
|
"rotX": 359.990143,
|
|
"rotY": 269.999969,
|
|
"rotZ": 179.987747,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.245293,
|
|
"posY": 1.40459144,
|
|
"posZ": 4.58944225,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.003876,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774f5f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.699791,
|
|
"posY": 1.550271,
|
|
"posZ": 4.99789762,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.0039,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.877541,
|
|
"posY": 1.40432525,
|
|
"posZ": 6.088623,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999542,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d18a7d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400978,
|
|
"posY": 1.45432484,
|
|
"posZ": 5.97300529,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.9995,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7a1943",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400986,
|
|
"posY": 1.60057485,
|
|
"posZ": 5.9730196,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999573,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "c69095",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.956053,
|
|
"posY": 1.59660506,
|
|
"posZ": -10.4410973,
|
|
"rotX": 5.862669E-09,
|
|
"rotY": 269.999756,
|
|
"rotZ": -1.31110784E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "{\"type\": \"ScenarioReference\", \"class\": \"Mythos\", \"tokens\": {\"back\": {\"Cultist\": {\"description\": \"-3. Place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. Discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token. If you fail, you must either take 1 damage or 1 horror.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. Lose 2 resources.\", \"modifier\": -4}}, \"front\": {\"Cultist\": {\"description\": \"-3. If you fail, place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. If you fail, discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. If you fail, lose 2 resources.\", \"modifier\": -4}}}, \"id\": \"70001\"}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "79b534",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": -1.14360023,
|
|
"posY": 1.29646444,
|
|
"posZ": -20.5859032,
|
|
"rotX": 7.935479E-07,
|
|
"rotY": 89.9999542,
|
|
"rotZ": 1.39725626E-06,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Epic Group A",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"b": 0.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function 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 onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n 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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\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()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) 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.25 * 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\r\n objPos.z = objPos.z * globalScaleFactor\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) 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=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\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()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, 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)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == 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 memoryList[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 self.editButton({index=index, color=color})\r\n memoryList[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 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\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\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 end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\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,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,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,\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 deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\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\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\":{\"0b6efa\":{\"lock\":false,\"pos\":{\"x\":-11.5922,\"y\":1.6725,\"z\":7.5505},\"rot\":{\"x\":359.9201,\"y\":269.9959,\"z\":0.0169}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"64e243\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6766,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"81c2f9\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9874,\"z\":0.0803}},\"b711b7\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9883,\"z\":0.0169}},\"bca98b\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0032,\"z\":0.0803}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9883,\"z\":0.0169}},\"e82e35\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "0b6efa",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -11.5922909,
|
|
"posY": 1.5698148,
|
|
"posZ": 7.550532,
|
|
"rotX": 1.1200737E-09,
|
|
"rotY": 269.99588,
|
|
"rotZ": 7.168464E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Story Cards",
|
|
"Description": "The Labyrinths of Lunacy Epic Group A",
|
|
"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": [
|
|
12337,
|
|
12336,
|
|
12335,
|
|
12334,
|
|
12332,
|
|
12333
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "b634cc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.681076,
|
|
"posY": 1.1699909,
|
|
"posZ": 33.7492828,
|
|
"rotX": -0.00219334452,
|
|
"rotY": 269.9993,
|
|
"rotZ": 181.9923,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encrypted Glyphs",
|
|
"Description": "Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70038\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 2.\",\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": [
|
|
"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": 12337,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a88055",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.7145424,
|
|
"posY": 1.17255723,
|
|
"posZ": 33.93921,
|
|
"rotX": 0.000748866238,
|
|
"rotY": 269.983643,
|
|
"rotZ": 182.050339,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Gate",
|
|
"Description": "Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70037\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 2.\",\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": [
|
|
"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": 12336,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5499a4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.7432671,
|
|
"posY": 1.16466856,
|
|
"posZ": 33.9429359,
|
|
"rotX": 0.0001037335,
|
|
"rotY": 269.9973,
|
|
"rotZ": 177.4824,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Dilemma",
|
|
"Description": "Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70036\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 2.\",\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": [
|
|
"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": 12335,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9dc445",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.5038481,
|
|
"posY": 1.67748845,
|
|
"posZ": 0.101173446,
|
|
"rotX": 359.932159,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.0202693511,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Vent",
|
|
"Description": "Act 1. Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70035\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 1. Act 2.\",\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": [
|
|
"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": 12334,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2b4513",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.1577549,
|
|
"posY": 1.67591178,
|
|
"posZ": 0.10011217,
|
|
"rotX": 359.9185,
|
|
"rotY": 270.002136,
|
|
"rotZ": 0.0178325959,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Arcane Runes",
|
|
"Description": "Act 1.",
|
|
"GMNotes": "{\n \"id\": \"70033\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 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": [
|
|
"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": 12332,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f5b434",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.30825,
|
|
"posY": 1.67846549,
|
|
"posZ": 0.692599058,
|
|
"rotX": 359.91922,
|
|
"rotY": 270.0014,
|
|
"rotZ": 0.0168646611,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Rift",
|
|
"Description": "Act 1. Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70034\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 1. Act 2.\",\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": [
|
|
"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": 12333,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"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": "372583",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": 30.5979042,
|
|
"posY": 3.30160618,
|
|
"posZ": -8.426154,
|
|
"rotX": 359.989716,
|
|
"rotY": 0.0003020338,
|
|
"rotZ": 359.9392,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Set-Aside Locations",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"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,
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "8d4c1e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 18.9456825,
|
|
"posY": 3.53806615,
|
|
"posZ": -10.7097235,
|
|
"rotX": 357.47168,
|
|
"rotY": 270.0486,
|
|
"rotZ": 358.559357,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Poison",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70031\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\n },\n \"locationBack\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\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": 12330,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "803008",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 23.0585518,
|
|
"posY": 3.50180435,
|
|
"posZ": -5.47366333,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.00238,
|
|
"rotZ": 0.01686782,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Night",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70023\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\",\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": 12321,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774c0b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 23.2025661,
|
|
"posY": 3.50232649,
|
|
"posZ": -3.019861,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.01686962,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abandoned Warehouse",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70032\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\"\n },\n \"locationBack\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\",\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": 12331,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "76a7f5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.1226082,
|
|
"posY": 3.50102854,
|
|
"posZ": -12.52452,
|
|
"rotX": 359.920166,
|
|
"rotY": 269.9875,
|
|
"rotZ": 0.016468592,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rot",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70030\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\",\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": 12329,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "839314",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.2669258,
|
|
"posY": 3.50696087,
|
|
"posZ": -5.912597,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999847,
|
|
"rotZ": 0.0168671273,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Decay",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70029\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12328,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "945939",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.7167625,
|
|
"posY": 3.57708764,
|
|
"posZ": -15.5725346,
|
|
"rotX": 2.78019428,
|
|
"rotY": 270.0193,
|
|
"rotZ": 0.0171191022,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Hunger",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70028\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12327,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6c7570",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 18.9640083,
|
|
"posY": 3.50476837,
|
|
"posZ": -14.7932949,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999878,
|
|
"rotZ": 0.0168708712,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Regret",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70024\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\",\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": 12323,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "aa6ad6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 23.2458763,
|
|
"posY": 3.58624768,
|
|
"posZ": -10.6953812,
|
|
"rotX": 359.9197,
|
|
"rotY": 269.981873,
|
|
"rotZ": 355.421875,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rain",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70019\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\",\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": 12318,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6a0757",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.64963,
|
|
"posY": 3.49517441,
|
|
"posZ": -15.71666,
|
|
"rotX": 359.920258,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0165826511,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Sorrows",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70020\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\",\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": 12319,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0d1a68",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 22.5693073,
|
|
"posY": 3.50136375,
|
|
"posZ": -7.72521448,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9792,
|
|
"rotZ": 0.01690108,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"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": [
|
|
12324,
|
|
12326,
|
|
12325
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "d13692",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.0891647,
|
|
"posY": 1.51714706,
|
|
"posZ": -4.625513,
|
|
"rotX": 359.931458,
|
|
"rotY": 269.9495,
|
|
"rotZ": 0.03132211,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70025\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Diamond\",\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": 12324,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "323435",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 24.8545074,
|
|
"posY": 1.67247283,
|
|
"posZ": -4.92986155,
|
|
"rotX": 359.931824,
|
|
"rotY": 269.94278,
|
|
"rotZ": 0.7975825,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70027\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Crescent\",\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": 12326,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5eb4c2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 24.842392,
|
|
"posY": 1.6752702,
|
|
"posZ": -4.79064369,
|
|
"rotX": 359.918854,
|
|
"rotY": 270.0017,
|
|
"rotZ": 0.0166205931,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70026\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Star\",\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": 12325,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 108.496719,
|
|
"posY": 2.42720366,
|
|
"posZ": -42.003212,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000275,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mysterious Syringe",
|
|
"Description": "Item.",
|
|
"GMNotes": "{\n \"id\": \"70041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\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": 265102,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ffcb3e",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 113.045967,
|
|
"posY": 2.40649486,
|
|
"posZ": -47.9697876,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0005,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductors",
|
|
"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": [
|
|
265113,
|
|
265113
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "598744",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 107.018974,
|
|
"posY": 1.41541934,
|
|
"posZ": -36.5547562,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000427,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 107.219559,
|
|
"posY": 1.56080449,
|
|
"posZ": -37.04752,
|
|
"rotX": 359.987579,
|
|
"rotY": 270.000732,
|
|
"rotZ": 359.984131,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 111.990471,
|
|
"posY": 2.39991117,
|
|
"posZ": -46.31781,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.995331,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Pet",
|
|
"Description": "You Are Not Its First Victim, Or Its Last",
|
|
"GMNotes": "{\n \"id\": \"70049\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Elite.\",\n \"victory\": 2,\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": 265110,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 111.723267,
|
|
"posY": 2.42690873,
|
|
"posZ": -43.54012,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.99527,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rot Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265103,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a5e76a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 112.382164,
|
|
"posY": 2.426502,
|
|
"posZ": -42.56695,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.9953,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunger Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70044\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265105,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 114.89135,
|
|
"posY": 2.4002223,
|
|
"posZ": -48.85682,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0003,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon",
|
|
"Description": "Your Anguish Is My Power",
|
|
"GMNotes": "{\n \"id\": \"70048\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Servitor. Elite.\",\n \"victory\": 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": 265109,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7399a5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 115.1883,
|
|
"posY": 2.42625546,
|
|
"posZ": -44.3115044,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0002,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Key of Mysteries",
|
|
"Description": "Item. Key.",
|
|
"GMNotes": "{\n \"id\": \"70040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\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": 265101,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 116.121185,
|
|
"posY": 2.42614365,
|
|
"posZ": -44.66714,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.9953,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Decay Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70046\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265107,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 115.301659,
|
|
"posY": 2.42611313,
|
|
"posZ": -43.5008545,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.995361,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Jailor",
|
|
"Description": "Monster. Elite.",
|
|
"GMNotes": "{\n \"id\": \"70051\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Elite.\",\n \"victory\": 5,\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": 265112,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "64e243",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -17.12008,
|
|
"posY": 1.55537271,
|
|
"posZ": -0.0299876612,
|
|
"rotX": 1.13409243E-07,
|
|
"rotY": 269.999847,
|
|
"rotZ": -2.998599E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "The Labyrinths of Lunacy Epic Group A",
|
|
"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": [
|
|
12317,
|
|
12316,
|
|
12315
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "2ce8bf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 16.13919,
|
|
"posY": 1.53205061,
|
|
"posZ": 4.50808144,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0168706216,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70018\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12317,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8fcb18",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 16.4440365,
|
|
"posY": 1.53294277,
|
|
"posZ": 8.981547,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.0001,
|
|
"rotZ": 0.01687187,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70017\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12316,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f97fe2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 16.27948,
|
|
"posY": 1.53253281,
|
|
"posZ": 6.810268,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0168711059,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70016\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1200371,
|
|
"posY": 1.53360486,
|
|
"posZ": 7.57002,
|
|
"rotX": -1.10531019E-07,
|
|
"rotY": 270.000122,
|
|
"rotZ": 1.87464792E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Note",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70039\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "81c2f9",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.68858027,
|
|
"posY": 1.61837292,
|
|
"posZ": -5.04849243,
|
|
"rotX": -2.307685E-08,
|
|
"rotY": 179.98735,
|
|
"rotZ": -1.017273E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"SidewaysCard": true,
|
|
"DeckIDs": [
|
|
12313,
|
|
12310,
|
|
12306
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "53cf0a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -21.9319077,
|
|
"posY": 1.06138027,
|
|
"posZ": 36.99266,
|
|
"rotX": -2.11097948E-08,
|
|
"rotY": 90.0,
|
|
"rotZ": 4.895357E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Escape ",
|
|
"Description": "Act 3",
|
|
"GMNotes": "{\n \"id\": \"70014\",\n \"type\": \"Act\",\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": 12313,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7d3634",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 13.37215,
|
|
"posY": 1.03166032,
|
|
"posZ": -4.01541948,
|
|
"rotX": -0.002657699,
|
|
"rotY": 180.018768,
|
|
"rotZ": -0.001073579,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Distortions in Time (Group A)",
|
|
"Description": "Act 2",
|
|
"GMNotes": "{\n \"id\": \"70011\",\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": 12310,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ae9723",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -21.9011326,
|
|
"posY": 1.22642171,
|
|
"posZ": 36.44581,
|
|
"rotX": -0.0008924603,
|
|
"rotY": 90.01153,
|
|
"rotZ": 359.048279,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Sealed In (Group A)",
|
|
"Description": "Act 1",
|
|
"GMNotes": "{\n \"id\": \"70007\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"clueThresholdPerInvestigator\": 2,\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": 12306,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "b711b7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -50.92445,
|
|
"posY": 1.56360507,
|
|
"posZ": 8.178405,
|
|
"rotX": 5.51624524E-09,
|
|
"rotY": 269.9883,
|
|
"rotZ": 2.11296509E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy Epic Group A",
|
|
"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": true,
|
|
"Hands": true,
|
|
"CardID": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bca98b",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.72477841,
|
|
"posY": 1.61837292,
|
|
"posZ": 0.373317152,
|
|
"rotX": 3.82034351E-08,
|
|
"rotY": 180.003174,
|
|
"rotZ": -8.701276E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agenda Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"SidewaysCard": true,
|
|
"DeckIDs": [
|
|
12305,
|
|
12303,
|
|
12301
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "2a9dcc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 7.2867074,
|
|
"posY": 1.0453285,
|
|
"posZ": 7.18152761,
|
|
"rotX": 0.109707333,
|
|
"rotY": 180.0272,
|
|
"rotZ": 359.8172,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Mastermind",
|
|
"Description": "Agenda 3",
|
|
"GMNotes": "{\n \"id\": \"70006\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 7,\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": 12305,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "107633",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 10.37864,
|
|
"posY": 1.03853178,
|
|
"posZ": 3.89812827,
|
|
"rotX": 0.108587012,
|
|
"rotY": 180.003082,
|
|
"rotZ": 359.79483,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agony and Despair",
|
|
"Description": "Agenda 2",
|
|
"GMNotes": "{\n \"id\": \"70004\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 7,\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": 12303,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e7d7cc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.8101664,
|
|
"posY": 1.69706535,
|
|
"posZ": 12.5322285,
|
|
"rotX": 0.0159889534,
|
|
"rotY": 180.000885,
|
|
"rotZ": 0.07920604,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Awakening",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "{\n \"id\": \"70002\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 6,\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": 12301,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "c69095",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.85000157,
|
|
"posY": 1.59660506,
|
|
"posZ": -10.3880081,
|
|
"rotX": -1.14143049E-07,
|
|
"rotY": 269.9882,
|
|
"rotZ": -1.457239E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "{\"type\": \"ScenarioReference\", \"class\": \"Mythos\", \"tokens\": {\"back\": {\"Cultist\": {\"description\": \"-3. Place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. Discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token. If you fail, you must either take 1 damage or 1 horror.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. Lose 2 resources.\", \"modifier\": -4}}, \"front\": {\"Cultist\": {\"description\": \"-3. If you fail, place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. If you fail, discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. If you fail, lose 2 resources.\", \"modifier\": -4}}}, \"id\": \"70001\"}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e82e35",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.92772031,
|
|
"posY": 1.71946764,
|
|
"posZ": 5.757152,
|
|
"rotX": -1.21156617E-07,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
265120,
|
|
265120,
|
|
265120,
|
|
265122,
|
|
265122,
|
|
265122,
|
|
265119,
|
|
265119,
|
|
265119,
|
|
265118,
|
|
265118,
|
|
265118,
|
|
265117,
|
|
265117,
|
|
265117,
|
|
265116,
|
|
265116,
|
|
265116,
|
|
265115,
|
|
265115,
|
|
265115,
|
|
265114,
|
|
265114,
|
|
265114
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.245293,
|
|
"posY": 1.40682054,
|
|
"posZ": 0.511827052,
|
|
"rotX": 359.982819,
|
|
"rotY": 269.9997,
|
|
"rotZ": 359.983,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70059\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265120,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1f26ea",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.1343,
|
|
"posY": 1.55180228,
|
|
"posZ": 0.456080019,
|
|
"rotX": 359.9916,
|
|
"rotY": 269.9994,
|
|
"rotZ": 359.9822,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70059\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265120,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.125427,
|
|
"posY": 1.56691492,
|
|
"posZ": 0.458712041,
|
|
"rotX": 359.987457,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.9844,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70059\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265120,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3bf255",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.40837359,
|
|
"posZ": -5.14877033,
|
|
"rotX": 359.9848,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.983429,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2927c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.55442476,
|
|
"posZ": -5.18531656,
|
|
"rotX": 359.98175,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.969971,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.306816,
|
|
"posY": 1.57090247,
|
|
"posZ": -4.69011068,
|
|
"rotX": 359.9873,
|
|
"rotY": 269.999634,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.267433,
|
|
"posY": 1.40541661,
|
|
"posZ": 5.20540237,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.9844,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8b2c36",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.61058,
|
|
"posY": 1.5512836,
|
|
"posZ": 5.16832256,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6fc896",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.610588,
|
|
"posY": 1.56516159,
|
|
"posZ": 5.16833353,
|
|
"rotX": 359.9869,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.984741,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.021744,
|
|
"posY": 1.40585113,
|
|
"posZ": 3.80202127,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4fa340",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.785805,
|
|
"posY": 1.45584965,
|
|
"posZ": 3.75804973,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0872f7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.170105,
|
|
"posY": 1.50584924,
|
|
"posZ": 3.71445131,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.005432,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.692337,
|
|
"posY": 1.40558171,
|
|
"posZ": 5.06883669,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999939,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "47bd50",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.103378,
|
|
"posY": 1.54470325,
|
|
"posZ": 5.00585747,
|
|
"rotX": 359.987183,
|
|
"rotY": 269.989258,
|
|
"rotZ": 359.989227,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400818,
|
|
"posY": 1.56518042,
|
|
"posZ": 4.86478567,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bf90c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.859726,
|
|
"posY": 2.85669827,
|
|
"posZ": 4.73798227,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.777832,
|
|
"posY": 2.59425187,
|
|
"posZ": 4.79823,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "24e15d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.294968,
|
|
"posY": 2.59410381,
|
|
"posZ": 4.926104,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.116432,
|
|
"posY": 1.57105386,
|
|
"posZ": 4.485176,
|
|
"rotX": 359.990143,
|
|
"rotY": 269.999969,
|
|
"rotZ": 179.987747,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.245293,
|
|
"posY": 1.40459144,
|
|
"posZ": 4.58944225,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.003876,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774f5f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.699791,
|
|
"posY": 1.550271,
|
|
"posZ": 4.99789762,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.0039,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.877541,
|
|
"posY": 1.40432525,
|
|
"posZ": 6.088623,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999542,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d18a7d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400978,
|
|
"posY": 1.45432484,
|
|
"posZ": 5.97300529,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.9995,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7a1943",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400986,
|
|
"posY": 1.60057485,
|
|
"posZ": 5.9730196,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999573,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "c352ac",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": -1.2274276,
|
|
"posY": 1.29646456,
|
|
"posZ": -29.4703751,
|
|
"rotX": -3.277929E-07,
|
|
"rotY": 89.99954,
|
|
"rotZ": 5.77769868E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Epic Group C",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"b": 0.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function 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 onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n 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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\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()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) 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.25 * 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\r\n objPos.z = objPos.z * globalScaleFactor\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) 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=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\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()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, 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)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == 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 memoryList[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 self.editButton({index=index, color=color})\r\n memoryList[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 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\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\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 end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\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,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,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,\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 deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\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\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\":{\"0b6efa\":{\"lock\":false,\"pos\":{\"x\":-12.0161,\"y\":1.6728,\"z\":6.7037},\"rot\":{\"x\":359.9201,\"y\":270.0052,\"z\":0.0169}},\"5f4b00\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"6c7570\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"7d512a\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0061,\"z\":0.0803}},\"803008\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.5762},\"rot\":{\"x\":359.9201,\"y\":269.9754,\"z\":0.0169}},\"bca98b\":{\"lock\":false,\"pos\":{\"x\":-2.7264,\"y\":1.6566,\"z\":0.3753},\"rot\":{\"x\":0.0167,\"y\":180.0867,\"z\":0.0803}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9889,\"z\":0.0169}},\"d89e46\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9889,\"z\":0.0169}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "0b6efa",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -12.0162039,
|
|
"posY": 1.56981492,
|
|
"posZ": 6.70372725,
|
|
"rotX": 3.799484E-08,
|
|
"rotY": 270.00528,
|
|
"rotZ": 3.282134E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Story Cards",
|
|
"Description": "The Labyrinths of Lunacy Epic Group C",
|
|
"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": [
|
|
12337,
|
|
12336,
|
|
12335,
|
|
12334,
|
|
12333,
|
|
12332
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "b634cc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.681076,
|
|
"posY": 1.1699909,
|
|
"posZ": 33.7492828,
|
|
"rotX": -0.00219334452,
|
|
"rotY": 269.9993,
|
|
"rotZ": 181.9923,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encrypted Glyphs",
|
|
"Description": "Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70038\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 2.\",\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": [
|
|
"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": 12337,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a88055",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.7145424,
|
|
"posY": 1.17255723,
|
|
"posZ": 33.93921,
|
|
"rotX": 0.000748866238,
|
|
"rotY": 269.983643,
|
|
"rotZ": 182.050339,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Gate",
|
|
"Description": "Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70037\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 2.\",\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": [
|
|
"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": 12336,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5499a4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.7432671,
|
|
"posY": 1.16466856,
|
|
"posZ": 33.9429359,
|
|
"rotX": 0.0001037335,
|
|
"rotY": 269.9973,
|
|
"rotZ": 177.4824,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Dilemma",
|
|
"Description": "Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70036\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 2.\",\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": [
|
|
"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": 12335,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9dc445",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.5400562,
|
|
"posY": 1.18275356,
|
|
"posZ": 33.8947449,
|
|
"rotX": -0.0008695685,
|
|
"rotY": 269.9974,
|
|
"rotZ": 177.563889,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Vent",
|
|
"Description": "Act 1. Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70035\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 1. Act 2.\",\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": [
|
|
"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": 12334,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f5b434",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 17.0922565,
|
|
"posY": 1.67277169,
|
|
"posZ": 2.4107666,
|
|
"rotX": 359.895172,
|
|
"rotY": 269.963867,
|
|
"rotZ": 0.0512777641,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Rift",
|
|
"Description": "Act 1. Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70034\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 1. Act 2.\",\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": [
|
|
"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": 12333,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2b4513",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 17.39103,
|
|
"posY": 1.6748265,
|
|
"posZ": 2.35978842,
|
|
"rotX": 359.912628,
|
|
"rotY": 270.022278,
|
|
"rotZ": 0.00387096056,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Arcane Runes",
|
|
"Description": "Act 1.",
|
|
"GMNotes": "{\n \"id\": \"70033\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 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": [
|
|
"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": 12332,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "5f4b00",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.927819,
|
|
"posY": 1.71946764,
|
|
"posZ": 5.757148,
|
|
"rotX": -4.254454E-08,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
265122,
|
|
265122,
|
|
265122,
|
|
265119,
|
|
265119,
|
|
265119,
|
|
265118,
|
|
265118,
|
|
265118,
|
|
265117,
|
|
265117,
|
|
265117,
|
|
265116,
|
|
265116,
|
|
265116,
|
|
265115,
|
|
265115,
|
|
265115,
|
|
265114,
|
|
265114,
|
|
265114,
|
|
265120,
|
|
265120,
|
|
265120
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "3bf255",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.40837359,
|
|
"posZ": -5.14877033,
|
|
"rotX": 359.9848,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.983429,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2927c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.55442476,
|
|
"posZ": -5.18531656,
|
|
"rotX": 359.98175,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.969971,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.306816,
|
|
"posY": 1.57090247,
|
|
"posZ": -4.69011068,
|
|
"rotX": 359.9873,
|
|
"rotY": 269.999634,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.267433,
|
|
"posY": 1.40541661,
|
|
"posZ": 5.20540237,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.9844,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8b2c36",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.61058,
|
|
"posY": 1.5512836,
|
|
"posZ": 5.16832256,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6fc896",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.610588,
|
|
"posY": 1.56516159,
|
|
"posZ": 5.16833353,
|
|
"rotX": 359.9869,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.984741,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.021744,
|
|
"posY": 1.40585113,
|
|
"posZ": 3.80202127,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4fa340",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.785805,
|
|
"posY": 1.45584965,
|
|
"posZ": 3.75804973,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0872f7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.170105,
|
|
"posY": 1.50584924,
|
|
"posZ": 3.71445131,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.005432,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.692337,
|
|
"posY": 1.40558171,
|
|
"posZ": 5.06883669,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999939,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "47bd50",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.103378,
|
|
"posY": 1.54470325,
|
|
"posZ": 5.00585747,
|
|
"rotX": 359.987183,
|
|
"rotY": 269.989258,
|
|
"rotZ": 359.989227,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400818,
|
|
"posY": 1.56518042,
|
|
"posZ": 4.86478567,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bf90c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.859726,
|
|
"posY": 2.85669827,
|
|
"posZ": 4.73798227,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.777832,
|
|
"posY": 2.59425187,
|
|
"posZ": 4.79823,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "24e15d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.294968,
|
|
"posY": 2.59410381,
|
|
"posZ": 4.926104,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.116432,
|
|
"posY": 1.57105386,
|
|
"posZ": 4.485176,
|
|
"rotX": 359.990143,
|
|
"rotY": 269.999969,
|
|
"rotZ": 179.987747,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.245293,
|
|
"posY": 1.40459144,
|
|
"posZ": 4.58944225,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.003876,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774f5f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.699791,
|
|
"posY": 1.550271,
|
|
"posZ": 4.99789762,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.0039,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.877541,
|
|
"posY": 1.40432525,
|
|
"posZ": 6.088623,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999542,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d18a7d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400978,
|
|
"posY": 1.45432484,
|
|
"posZ": 5.97300529,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.9995,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7a1943",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400986,
|
|
"posY": 1.60057485,
|
|
"posZ": 5.9730196,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999573,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.245293,
|
|
"posY": 1.40682054,
|
|
"posZ": 0.511827052,
|
|
"rotX": 359.982819,
|
|
"rotY": 269.9997,
|
|
"rotZ": 359.983,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70059\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265120,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1f26ea",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.1343,
|
|
"posY": 1.55180228,
|
|
"posZ": 0.456080019,
|
|
"rotX": 359.9916,
|
|
"rotY": 269.9994,
|
|
"rotZ": 359.9822,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70059\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265120,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.125427,
|
|
"posY": 1.56691492,
|
|
"posZ": 0.458712041,
|
|
"rotX": 359.987457,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.9844,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70059\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265120,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "6c7570",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1201477,
|
|
"posY": 1.53360486,
|
|
"posZ": -7.699995,
|
|
"rotX": -4.83275429E-08,
|
|
"rotY": 269.999878,
|
|
"rotZ": 1.46584171E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Regret",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70024\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\",\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": 12323,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7d512a",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.6885798,
|
|
"posY": 1.61837292,
|
|
"posZ": -5.048488,
|
|
"rotX": -3.772638E-08,
|
|
"rotY": 180.006088,
|
|
"rotZ": -1.560912E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act",
|
|
"Description": "The Labyrinths of Lunacy Epic Group C",
|
|
"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": true,
|
|
"DeckIDs": [
|
|
12313,
|
|
12312,
|
|
12308
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "53cf0a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -56.0544739,
|
|
"posY": 1.06138039,
|
|
"posZ": 9.142853,
|
|
"rotX": 4.47349862E-07,
|
|
"rotY": 90.02594,
|
|
"rotZ": 6.58017768E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Escape ",
|
|
"Description": "Act 3",
|
|
"GMNotes": "{\n \"id\": \"70014\",\n \"type\": \"Act\",\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": 12313,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f1962b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -56.3098,
|
|
"posY": 1.20656741,
|
|
"posZ": 9.272712,
|
|
"rotX": -0.0002775845,
|
|
"rotY": 89.99831,
|
|
"rotZ": 0.00140549464,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Pet (Group C)",
|
|
"Description": "Act 2",
|
|
"GMNotes": "{\n \"id\": \"70013\",\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": 12312,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "33dafa",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 23.0360317,
|
|
"posY": 1.68133008,
|
|
"posZ": 7.69292068,
|
|
"rotX": 0.01249531,
|
|
"rotY": 179.9997,
|
|
"rotZ": 0.0603442,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Levers (Group C)",
|
|
"Description": "Act 1",
|
|
"GMNotes": "{\n \"id\": \"70009\",\n \"type\": \"Act\",\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": 12308,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "803008",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1200542,
|
|
"posY": 1.53360486,
|
|
"posZ": -0.02999151,
|
|
"rotX": 8.674924E-08,
|
|
"rotY": 269.999847,
|
|
"rotZ": -1.73748958E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Night",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70023\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\",\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": 12321,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1200447,
|
|
"posY": 1.53360486,
|
|
"posZ": 7.576214,
|
|
"rotX": -1.30240579E-07,
|
|
"rotY": 269.975433,
|
|
"rotZ": 1.08812451E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Note",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70039\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bca98b",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.72647715,
|
|
"posY": 1.61837292,
|
|
"posZ": 0.3753164,
|
|
"rotX": -1.55832367E-07,
|
|
"rotY": 180.08667,
|
|
"rotZ": 1.203706E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agenda",
|
|
"Description": "The Labyrinths of Lunacy Epic Group C",
|
|
"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": true,
|
|
"DeckIDs": [
|
|
12305,
|
|
12303,
|
|
12301
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "2a9dcc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 7.2867074,
|
|
"posY": 1.0453285,
|
|
"posZ": 7.18152761,
|
|
"rotX": 0.109707333,
|
|
"rotY": 180.0272,
|
|
"rotZ": 359.8172,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Mastermind",
|
|
"Description": "Agenda 3",
|
|
"GMNotes": "{\n \"id\": \"70006\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 7,\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": 12305,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "107633",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 10.37864,
|
|
"posY": 1.03853178,
|
|
"posZ": 3.89812827,
|
|
"rotX": 0.108587012,
|
|
"rotY": 180.003082,
|
|
"rotZ": 359.79483,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agony and Despair",
|
|
"Description": "Agenda 2",
|
|
"GMNotes": "{\n \"id\": \"70004\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 7,\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": 12303,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e7d7cc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 10.7556477,
|
|
"posY": 1.18637288,
|
|
"posZ": 3.677581,
|
|
"rotX": 0.0820614547,
|
|
"rotY": 180.002274,
|
|
"rotZ": 359.71402,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Awakening",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "{\n \"id\": \"70002\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 6,\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": 12301,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "c69095",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.95605326,
|
|
"posY": 1.59660506,
|
|
"posZ": -10.4411974,
|
|
"rotX": -8.764003E-09,
|
|
"rotY": 269.988831,
|
|
"rotZ": 1.62083023E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "{\"type\": \"ScenarioReference\", \"class\": \"Mythos\", \"tokens\": {\"back\": {\"Cultist\": {\"description\": \"-3. Place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. Discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token. If you fail, you must either take 1 damage or 1 horror.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. Lose 2 resources.\", \"modifier\": -4}}, \"front\": {\"Cultist\": {\"description\": \"-3. If you fail, place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. If you fail, discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. If you fail, lose 2 resources.\", \"modifier\": -4}}}, \"id\": \"70001\"}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d89e46",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -50.92445,
|
|
"posY": 1.56360507,
|
|
"posZ": 8.17841,
|
|
"rotX": 3.06737853E-08,
|
|
"rotY": 269.9889,
|
|
"rotZ": -2.00717842E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy Epic Group C",
|
|
"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": true,
|
|
"Hands": true,
|
|
"CardID": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"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": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 102.276566,
|
|
"posY": 2.3957684,
|
|
"posZ": -48.4202,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.995422,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Decay Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70046\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265107,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7399a5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 102.930435,
|
|
"posY": 2.3965807,
|
|
"posZ": -46.45836,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002075,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Key of Mysteries",
|
|
"Description": "Item. Key.",
|
|
"GMNotes": "{\n \"id\": \"70040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\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": 265101,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "262cb3",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 104.744911,
|
|
"posY": 2.42612481,
|
|
"posZ": -52.6777725,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.003448,
|
|
"rotZ": 1.26176834,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductors",
|
|
"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": [
|
|
265113,
|
|
265113
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "598744",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.603859,
|
|
"posY": 1.4104377,
|
|
"posZ": -44.18631,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.003052,
|
|
"rotZ": 1.26096249,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.840958,
|
|
"posY": 1.512406,
|
|
"posZ": -44.3874626,
|
|
"rotX": 359.986267,
|
|
"rotY": 270.002441,
|
|
"rotZ": 3.29169,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 104.770935,
|
|
"posY": 2.3964293,
|
|
"posZ": -49.2575226,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.9955,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Pet",
|
|
"Description": "You Are Not Its First Victim, Or Its Last",
|
|
"GMNotes": "{\n \"id\": \"70049\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Elite.\",\n \"victory\": 2,\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": 265110,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 104.930771,
|
|
"posY": 2.39689732,
|
|
"posZ": -47.8549652,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002136,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon",
|
|
"Description": "Your Anguish Is My Power",
|
|
"GMNotes": "{\n \"id\": \"70048\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Servitor. Elite.\",\n \"victory\": 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": 265109,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 104.1216,
|
|
"posY": 2.39697242,
|
|
"posZ": -46.59701,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.002075,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mysterious Syringe",
|
|
"Description": "Item.",
|
|
"GMNotes": "{\n \"id\": \"70041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\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": 265102,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 106.2418,
|
|
"posY": 2.39629078,
|
|
"posZ": -51.5546455,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.995178,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rot Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265103,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a5e76a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 106.973404,
|
|
"posY": 2.3970685,
|
|
"posZ": -49.80606,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.995361,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunger Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70044\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265105,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 106.453209,
|
|
"posY": 2.39727044,
|
|
"posZ": -48.4689751,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.995544,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Jailor",
|
|
"Description": "Monster. Elite.",
|
|
"GMNotes": "{\n \"id\": \"70051\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Elite.\",\n \"victory\": 5,\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": 265112,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "372583",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": 28.4489746,
|
|
"posY": 3.30353975,
|
|
"posZ": -7.00777054,
|
|
"rotX": 359.968262,
|
|
"rotY": 0.0006675325,
|
|
"rotZ": 359.952667,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Set-Aside Locations",
|
|
"Description": "The Labyrinths of Lunacy Epic Group C",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"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,
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "76a7f5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.9857025,
|
|
"posY": 3.50943685,
|
|
"posZ": -13.4396172,
|
|
"rotX": 2.25402927,
|
|
"rotY": 269.9642,
|
|
"rotZ": 357.7738,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rot",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70030\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\",\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": 12329,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6a0757",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.0972881,
|
|
"posY": 3.491909,
|
|
"posZ": -10.1691294,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.971863,
|
|
"rotZ": 0.01691103,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Sorrows",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70020\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\",\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": 12319,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "aa6ad6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.5995312,
|
|
"posY": 3.49204636,
|
|
"posZ": -7.32362938,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.99646,
|
|
"rotZ": 0.0168712921,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rain",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70019\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\",\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": 12318,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774c0b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 24.9771423,
|
|
"posY": 3.485693,
|
|
"posZ": -3.44033432,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.0014,
|
|
"rotZ": 0.0168663058,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abandoned Warehouse",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70032\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\"\n },\n \"locationBack\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\",\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": 12331,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8d4c1e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 26.20603,
|
|
"posY": 3.48269057,
|
|
"posZ": -7.82241774,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.001556,
|
|
"rotZ": 0.0168692935,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Poison",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70031\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\n },\n \"locationBack\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\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": 12330,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "839314",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 20.0274677,
|
|
"posY": 3.48974848,
|
|
"posZ": -13.1076908,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9977,
|
|
"rotZ": 0.0168735739,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Decay",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70029\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12328,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "945939",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.58867,
|
|
"posY": 3.48528385,
|
|
"posZ": -16.1419773,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.000366,
|
|
"rotZ": 0.0168695431,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Hunger",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70028\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12327,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "616a5f",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 18.9421711,
|
|
"posY": 3.494238,
|
|
"posZ": -1.43456376,
|
|
"rotX": 359.920258,
|
|
"rotY": 269.996246,
|
|
"rotZ": 0.01745628,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"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": [
|
|
12316,
|
|
12317,
|
|
12315
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "8fcb18",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 17.36437,
|
|
"posY": 1.530055,
|
|
"posZ": 3.50176573,
|
|
"rotX": 359.9203,
|
|
"rotY": 269.5793,
|
|
"rotZ": 0.0200006645,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70017\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12316,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2ce8bf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.2832441,
|
|
"posY": 1.62196589,
|
|
"posZ": 5.27707863,
|
|
"rotX": 359.921356,
|
|
"rotY": 269.995422,
|
|
"rotZ": 355.297577,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70018\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12317,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f97fe2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 17.3644943,
|
|
"posY": 1.52928925,
|
|
"posZ": 0.930943847,
|
|
"rotX": 359.920227,
|
|
"rotY": 269.638123,
|
|
"rotZ": 0.01736924,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70016\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "87d61c",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 22.91545,
|
|
"posY": 3.48926258,
|
|
"posZ": 0.477911919,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.006256,
|
|
"rotZ": 0.0168582536,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"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": [
|
|
12325,
|
|
12326,
|
|
12324
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "5eb4c2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.2373371,
|
|
"posY": 1.52524936,
|
|
"posZ": 10.2819328,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.0063,
|
|
"rotZ": 0.01685744,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70026\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Star\",\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": 12325,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "323435",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 21.5344143,
|
|
"posY": 1.52534723,
|
|
"posZ": 7.287031,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.004761,
|
|
"rotZ": 0.0168599933,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70027\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Crescent\",\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": 12326,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d13692",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.1697216,
|
|
"posY": 1.52355063,
|
|
"posZ": 4.19316626,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.025574,
|
|
"rotZ": 0.0168365575,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70025\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Diamond\",\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": 12324,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "c7c4c1",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": -1.03699,
|
|
"posY": 1.29646468,
|
|
"posZ": -24.7442017,
|
|
"rotX": -2.62826234E-06,
|
|
"rotY": 89.99929,
|
|
"rotZ": -8.1711363E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Epic Group B",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"b": 0.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function 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 onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n 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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\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()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) 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.25 * 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\r\n objPos.z = objPos.z * globalScaleFactor\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) 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=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\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()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, 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)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == 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 memoryList[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 self.editButton({index=index, color=color})\r\n memoryList[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 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\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\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 end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\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,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,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,\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 deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\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\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\":{\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"078f41\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0154,\"z\":0.0169}},\"0b6efa\":{\"lock\":false,\"pos\":{\"x\":-11.2956,\"y\":1.6722,\"z\":8.1598},\"rot\":{\"x\":359.9201,\"y\":270.0205,\"z\":0.0168}},\"397fe8\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"6a0757\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6748,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"817446\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6793,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"9ed94a\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9918,\"z\":0.0803}},\"aa6ad6\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"bca98b\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0028,\"z\":0.0803}},\"c69095\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0154,\"z\":0.0168}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"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": "372583",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": 33.41801,
|
|
"posY": 2.31767535,
|
|
"posZ": -34.426487,
|
|
"rotX": -0.00354051567,
|
|
"rotY": 0.000744728663,
|
|
"rotZ": 359.983215,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Set-Aside Locations",
|
|
"Description": "The Labyrinths of Lunacy Epic Group B",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.7058823,
|
|
"g": 0.366520882,
|
|
"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,
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "945939",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 43.4397354,
|
|
"posY": 3.54296875,
|
|
"posZ": -14.7219143,
|
|
"rotX": 1.23537457,
|
|
"rotY": 269.9658,
|
|
"rotZ": 178.372543,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Hunger",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70028\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Star\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12327,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8d4c1e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 43.7851563,
|
|
"posY": 3.55796671,
|
|
"posZ": -15.0050583,
|
|
"rotX": 1.4278934,
|
|
"rotY": 269.984924,
|
|
"rotZ": 179.0521,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Poison",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70031\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\n },\n \"locationBack\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Diamond\"\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": 12330,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "512c73",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 43.4824142,
|
|
"posY": 3.520636,
|
|
"posZ": -15.5961752,
|
|
"rotX": 1.24931192,
|
|
"rotY": 270.0603,
|
|
"rotZ": 183.18898,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"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": [
|
|
12323,
|
|
12317,
|
|
12316,
|
|
12315
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "6c7570",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.1965656,
|
|
"posY": 1.66263235,
|
|
"posZ": -9.3814,
|
|
"rotX": 359.918579,
|
|
"rotY": 269.9987,
|
|
"rotZ": 180.0184,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Regret",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70024\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Square\",\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": 12323,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2ce8bf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.006155,
|
|
"posY": 1.67662942,
|
|
"posZ": -9.109675,
|
|
"rotX": 359.933319,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.01593,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70018\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12317,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8fcb18",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 24.9785538,
|
|
"posY": 1.65881681,
|
|
"posZ": -9.211089,
|
|
"rotX": 359.923218,
|
|
"rotY": 269.9981,
|
|
"rotZ": 180.015808,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70017\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12316,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f97fe2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 25.0260048,
|
|
"posY": 1.518346,
|
|
"posZ": -9.171155,
|
|
"rotX": 359.914856,
|
|
"rotY": 270.001923,
|
|
"rotZ": 180.017334,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Secrets",
|
|
"Description": "Prison. Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70016\",\n \"type\": \"Location\",\n \"traits\": \"Prison. Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\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": 12315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "77559d",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 43.49715,
|
|
"posY": 3.54366422,
|
|
"posZ": -15.36776,
|
|
"rotX": 1.41333759,
|
|
"rotY": 270.068359,
|
|
"rotZ": 182.183044,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"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": [
|
|
12324,
|
|
12326,
|
|
12325
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "d13692",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 33.6497154,
|
|
"posY": 1.67211366,
|
|
"posZ": 0.111760661,
|
|
"rotX": 359.710327,
|
|
"rotY": 270.108521,
|
|
"rotZ": 179.965485,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70025\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Diamond\",\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": 12324,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "323435",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 33.73473,
|
|
"posY": 1.64947951,
|
|
"posZ": 0.335074455,
|
|
"rotX": 359.918732,
|
|
"rotY": 270.010132,
|
|
"rotZ": 180.018539,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70027\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Crescent\",\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": 12326,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5eb4c2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 33.9631958,
|
|
"posY": 1.5086385,
|
|
"posZ": 0.112138949,
|
|
"rotX": 359.9132,
|
|
"rotY": 269.998352,
|
|
"rotZ": 180.020462,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Labyrinthine Halls",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"70026\",\n \"type\": \"Location\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Circle|Square|Heart|SlantedEquals|Star\",\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": 12325,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "76a7f5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 43.34903,
|
|
"posY": 3.54478741,
|
|
"posZ": -15.0426645,
|
|
"rotX": 1.66956067,
|
|
"rotY": 269.999817,
|
|
"rotZ": 180.038727,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rot",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70030\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Diamond\",\n \"connections\": \"SlantedEquals|Tilde|Tee\",\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": 12329,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774c0b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 43.5928268,
|
|
"posY": 3.55379677,
|
|
"posZ": -15.2565355,
|
|
"rotX": 1.01505506,
|
|
"rotY": 270.0223,
|
|
"rotZ": 181.333313,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Abandoned Warehouse",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70032\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\"\n },\n \"locationBack\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Crescent|Star\",\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": 12331,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "803008",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 43.5968628,
|
|
"posY": 3.53126645,
|
|
"posZ": -15.5551214,
|
|
"rotX": 2.483657,
|
|
"rotY": 270.02887,
|
|
"rotZ": 181.433975,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Night",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70023\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Square\",\n \"connections\": \"Triangle|SlantedEquals\",\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": 12321,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "839314",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 43.43893,
|
|
"posY": 3.518587,
|
|
"posZ": -15.2216339,
|
|
"rotX": 3.35317326,
|
|
"rotY": 270.1581,
|
|
"rotZ": 184.807312,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Decay",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70029\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"SlantedEquals|Tee\",\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": 12328,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "7399a5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 108.768188,
|
|
"posY": 2.39852428,
|
|
"posZ": -47.0609322,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000244,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Key of Mysteries",
|
|
"Description": "Item. Key.",
|
|
"GMNotes": "{\n \"id\": \"70040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\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": 265101,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b27351",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 111.295547,
|
|
"posY": 2.404651,
|
|
"posZ": -54.18632,
|
|
"rotX": 0.0208082888,
|
|
"rotY": 270.000183,
|
|
"rotZ": 0.01677495,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductors",
|
|
"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": [
|
|
265113,
|
|
265113
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "598744",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 106.273193,
|
|
"posY": 1.38717616,
|
|
"posZ": -46.38734,
|
|
"rotX": 0.02080797,
|
|
"rotY": 270.000244,
|
|
"rotZ": 0.016771229,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 106.307686,
|
|
"posY": 1.53265011,
|
|
"posZ": -46.529438,
|
|
"rotX": 0.01228932,
|
|
"rotY": 270.011932,
|
|
"rotZ": 0.0182685815,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faceless Abductor",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"70052\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Nightgaunt.\",\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": 265113,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 111.196815,
|
|
"posY": 2.39817333,
|
|
"posZ": -51.273056,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.995361,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Pet",
|
|
"Description": "You Are Not Its First Victim, Or Its Last",
|
|
"GMNotes": "{\n \"id\": \"70049\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Elite.\",\n \"victory\": 2,\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": 265110,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 111.993156,
|
|
"posY": 2.39884329,
|
|
"posZ": -49.9706535,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.000183,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon",
|
|
"Description": "Your Anguish Is My Power",
|
|
"GMNotes": "{\n \"id\": \"70048\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Servitor. Elite.\",\n \"victory\": 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": 265109,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 112.213341,
|
|
"posY": 2.39933538,
|
|
"posZ": -48.56027,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0002,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mysterious Syringe",
|
|
"Description": "Item.",
|
|
"GMNotes": "{\n \"id\": \"70041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\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": 265102,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 112.941437,
|
|
"posY": 2.39876342,
|
|
"posZ": -51.41916,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.995178,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rot Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265103,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a5e76a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 113.456627,
|
|
"posY": 2.39852715,
|
|
"posZ": -52.8642578,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.995178,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunger Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70044\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265105,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 113.49482,
|
|
"posY": 2.399101,
|
|
"posZ": -50.9554024,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.9953,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Decay Diagram",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70046\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265107,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 113.238487,
|
|
"posY": 2.39936233,
|
|
"posZ": -49.7453842,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.995361,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Jailor",
|
|
"Description": "Monster. Elite.",
|
|
"GMNotes": "{\n \"id\": \"70051\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Elite.\",\n \"victory\": 5,\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": 265112,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "078f41",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -50.92445,
|
|
"posY": 1.56360507,
|
|
"posZ": 8.17841,
|
|
"rotX": 2.50810466E-08,
|
|
"rotY": 270.0154,
|
|
"rotZ": 2.1759714E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy Epic Group B",
|
|
"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": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0b6efa",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -11.295701,
|
|
"posY": 1.56981492,
|
|
"posZ": 8.159825,
|
|
"rotX": -2.4593346E-08,
|
|
"rotY": 270.020447,
|
|
"rotZ": 4.977368E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Story Cards",
|
|
"Description": "The Labyrinths of Lunacy Epic Group B",
|
|
"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": [
|
|
12337,
|
|
12336,
|
|
12335,
|
|
12334,
|
|
12333,
|
|
12332
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "b634cc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.681076,
|
|
"posY": 1.1699909,
|
|
"posZ": 33.7492828,
|
|
"rotX": -0.00219334452,
|
|
"rotY": 269.9993,
|
|
"rotZ": 181.9923,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encrypted Glyphs",
|
|
"Description": "Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70038\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 2.\",\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": [
|
|
"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": 12337,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a88055",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.7145424,
|
|
"posY": 1.17255723,
|
|
"posZ": 33.93921,
|
|
"rotX": 0.000748866238,
|
|
"rotY": 269.983643,
|
|
"rotZ": 182.050339,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Gate",
|
|
"Description": "Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70037\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 2.\",\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": [
|
|
"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": 12336,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5499a4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.7432671,
|
|
"posY": 1.16466856,
|
|
"posZ": 33.9429359,
|
|
"rotX": 0.0001037335,
|
|
"rotY": 269.9973,
|
|
"rotZ": 177.4824,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Dilemma",
|
|
"Description": "Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70036\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 2.\",\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": [
|
|
"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": 12335,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9dc445",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.5400562,
|
|
"posY": 1.18275356,
|
|
"posZ": 33.8947449,
|
|
"rotX": -0.0008695685,
|
|
"rotY": 269.9974,
|
|
"rotZ": 177.563889,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Vent",
|
|
"Description": "Act 1. Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70035\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 1. Act 2.\",\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": [
|
|
"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": 12334,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f5b434",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.602298,
|
|
"posY": 1.68243909,
|
|
"posZ": 0.6778279,
|
|
"rotX": 359.919159,
|
|
"rotY": 269.9687,
|
|
"rotZ": 0.0359393768,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Rift",
|
|
"Description": "Act 1. Act 2.",
|
|
"GMNotes": "{\n \"id\": \"70034\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 1. Act 2.\",\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": [
|
|
"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": 12333,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2b4513",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 10.2110786,
|
|
"posY": 1.85061157,
|
|
"posZ": 0.5184586,
|
|
"rotX": 359.903961,
|
|
"rotY": 269.9811,
|
|
"rotZ": 350.9136,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Arcane Runes",
|
|
"Description": "Act 1.",
|
|
"GMNotes": "{\n \"id\": \"70033\",\n \"type\": \"Story\",\n \"class\": \"Mythos\",\n \"traits\": \"Act 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": [
|
|
"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": 12332,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "397fe8",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.927719,
|
|
"posY": 1.71946764,
|
|
"posZ": 5.75714731,
|
|
"rotX": -1.06095264E-07,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
265122,
|
|
265122,
|
|
265122,
|
|
265119,
|
|
265119,
|
|
265119,
|
|
265118,
|
|
265118,
|
|
265118,
|
|
265117,
|
|
265117,
|
|
265117,
|
|
265116,
|
|
265116,
|
|
265116,
|
|
265115,
|
|
265115,
|
|
265115,
|
|
265114,
|
|
265114,
|
|
265114,
|
|
265120,
|
|
265120,
|
|
265120
|
|
],
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "3bf255",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.40837359,
|
|
"posZ": -5.14877033,
|
|
"rotX": 359.9848,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.983429,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2927c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.304947,
|
|
"posY": 1.55442476,
|
|
"posZ": -5.18531656,
|
|
"rotX": 359.98175,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.969971,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.306816,
|
|
"posY": 1.57090247,
|
|
"posZ": -4.69011068,
|
|
"rotX": 359.9873,
|
|
"rotY": 269.999634,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Harvested Pain",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"70061\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265122,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.267433,
|
|
"posY": 1.40541661,
|
|
"posZ": 5.20540237,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.9844,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8b2c36",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.61058,
|
|
"posY": 1.5512836,
|
|
"posZ": 5.16832256,
|
|
"rotX": 359.987457,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984375,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6fc896",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.610588,
|
|
"posY": 1.56516159,
|
|
"posZ": 5.16833353,
|
|
"rotX": 359.9869,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.984741,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Blood and Rust",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70058\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265119,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.021744,
|
|
"posY": 1.40585113,
|
|
"posZ": 3.80202127,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4fa340",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.785805,
|
|
"posY": 1.45584965,
|
|
"posZ": 3.75804973,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.000061,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0872f7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.170105,
|
|
"posY": 1.50584924,
|
|
"posZ": 3.71445131,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.005432,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dreadful Mechanism",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"70057\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap.\",\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": 265118,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.692337,
|
|
"posY": 1.40558171,
|
|
"posZ": 5.06883669,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999939,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "47bd50",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.103378,
|
|
"posY": 1.54470325,
|
|
"posZ": 5.00585747,
|
|
"rotX": 359.987183,
|
|
"rotY": 269.989258,
|
|
"rotZ": 359.989227,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400818,
|
|
"posY": 1.56518042,
|
|
"posZ": 4.86478567,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Poisonous Gas",
|
|
"Description": "Trap. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70056\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Trap. Poison.\",\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": 265117,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bf90c6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.859726,
|
|
"posY": 2.85669827,
|
|
"posZ": 4.73798227,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.777832,
|
|
"posY": 2.59425187,
|
|
"posZ": 4.79823,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "24e15d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.294968,
|
|
"posY": 2.59410381,
|
|
"posZ": 4.926104,
|
|
"rotX": 0.0,
|
|
"rotY": 270.0,
|
|
"rotZ": 58.6256943,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unnatural Weariness",
|
|
"Description": "Injury. Poison.",
|
|
"GMNotes": "{\n \"id\": \"70055\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Injury. Poison.\",\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": 265116,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.116432,
|
|
"posY": 1.57105386,
|
|
"posZ": 4.485176,
|
|
"rotX": 359.990143,
|
|
"rotY": 269.999969,
|
|
"rotZ": 179.987747,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.245293,
|
|
"posY": 1.40459144,
|
|
"posZ": 4.58944225,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.003876,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "774f5f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.699791,
|
|
"posY": 1.550271,
|
|
"posZ": 4.99789762,
|
|
"rotX": 359.985565,
|
|
"rotY": 270.0039,
|
|
"rotZ": 359.980865,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mi-Go Guard",
|
|
"Description": "Monster. Mi-Go.",
|
|
"GMNotes": "{\n \"id\": \"70054\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Mi-Go.\",\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": 265115,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.877541,
|
|
"posY": 1.40432525,
|
|
"posZ": 6.088623,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999542,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d18a7d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400978,
|
|
"posY": 1.45432484,
|
|
"posZ": 5.97300529,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.9995,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7a1943",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 101.400986,
|
|
"posY": 1.60057485,
|
|
"posZ": 5.9730196,
|
|
"rotX": 359.987335,
|
|
"rotY": 269.999573,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Tortured Victim",
|
|
"Description": "Humanoid. Extradimensional.",
|
|
"GMNotes": "{\n \"id\": \"70053\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Extradimensional.\",\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": 265114,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.245293,
|
|
"posY": 1.40682054,
|
|
"posZ": 0.511827052,
|
|
"rotX": 359.982819,
|
|
"rotY": 269.9997,
|
|
"rotZ": 359.983,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70059\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265120,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1f26ea",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.1343,
|
|
"posY": 1.55180228,
|
|
"posZ": 0.456080019,
|
|
"rotX": 359.9916,
|
|
"rotY": 269.9994,
|
|
"rotZ": 359.9822,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70059\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265120,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 100.125427,
|
|
"posY": 1.56691492,
|
|
"posZ": 0.458712041,
|
|
"rotX": 359.987457,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.9844,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Paradox Effect",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"70059\",\n \"type\": \"Treachery\",\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,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265120,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "6a0757",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1201477,
|
|
"posY": 1.53360486,
|
|
"posZ": -7.69999552,
|
|
"rotX": -6.04748038E-08,
|
|
"rotY": 269.999878,
|
|
"rotZ": 5.09145153E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Sorrows",
|
|
"Description": "Prison.",
|
|
"GMNotes": "{\n \"id\": \"70020\",\n \"type\": \"Location\",\n \"traits\": \"Prison.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\",\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": 12319,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "817446",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1200447,
|
|
"posY": 1.53360486,
|
|
"posZ": 7.570014,
|
|
"rotX": -6.48151E-08,
|
|
"rotY": 270.000183,
|
|
"rotZ": -1.06421389E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eixodolon's Note",
|
|
"Description": "Item. Script.",
|
|
"GMNotes": "{\n \"id\": \"70039\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\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": 265100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2651": {
|
|
"FaceURL": "https://i.imgur.com/URbV3ol.jpg",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9ed94a",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.68857956,
|
|
"posY": 1.61837292,
|
|
"posZ": -5.04848862,
|
|
"rotX": -3.790069E-08,
|
|
"rotY": 179.991791,
|
|
"rotZ": -1.3936613E-09,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act Deck ",
|
|
"Description": "The Labyrinths of Lunacy Epic Group B",
|
|
"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": true,
|
|
"DeckIDs": [
|
|
12313,
|
|
12311,
|
|
12307
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "53cf0a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -53.53308,
|
|
"posY": 1.06138027,
|
|
"posZ": 35.4235458,
|
|
"rotX": -4.21700079E-08,
|
|
"rotY": 89.98837,
|
|
"rotZ": -2.0525367E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Escape ",
|
|
"Description": "Act 3",
|
|
"GMNotes": "{\n \"id\": \"70014\",\n \"type\": \"Act\",\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": 12313,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2c450f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -53.31844,
|
|
"posY": 1.20037508,
|
|
"posZ": 35.7440948,
|
|
"rotX": -0.00023923596,
|
|
"rotY": 89.99582,
|
|
"rotZ": -0.0008090447,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Seeping Death (Group B)",
|
|
"Description": "Act 2",
|
|
"GMNotes": "{\n \"id\": \"70012\",\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": 12311,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "02cc53",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -53.7771263,
|
|
"posY": 1.2517761,
|
|
"posZ": 35.69622,
|
|
"rotX": 359.97995,
|
|
"rotY": 90.0234756,
|
|
"rotZ": 2.623313,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Watery Grave (Group B)",
|
|
"Description": "Act 1",
|
|
"GMNotes": "{\n \"id\": \"70008\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"clueThresholdPerInvestigator\": 2,\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": 12307,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "aa6ad6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1200523,
|
|
"posY": 1.53360486,
|
|
"posZ": -0.0299914964,
|
|
"rotX": -8.41199537E-08,
|
|
"rotY": 269.9999,
|
|
"rotZ": 1.21824357E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Chamber of Rain",
|
|
"Description": "Distortion.",
|
|
"GMNotes": "{\n \"id\": \"70019\",\n \"type\": \"Location\",\n \"traits\": \"Distortion.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Heart\",\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": 12318,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bca98b",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.72477722,
|
|
"posY": 1.61837292,
|
|
"posZ": 0.373316437,
|
|
"rotX": -2.989106E-08,
|
|
"rotY": 180.002777,
|
|
"rotZ": 8.5007E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agenda Deck",
|
|
"Description": "The Labyrinths of Lunacy Epic Group B",
|
|
"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": true,
|
|
"DeckIDs": [
|
|
12305,
|
|
12303,
|
|
12301
|
|
],
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "2a9dcc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 7.2867074,
|
|
"posY": 1.0453285,
|
|
"posZ": 7.18152761,
|
|
"rotX": 0.109707333,
|
|
"rotY": 180.0272,
|
|
"rotZ": 359.8172,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Mastermind",
|
|
"Description": "Agenda 3",
|
|
"GMNotes": "{\n \"id\": \"70006\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 7,\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": 12305,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "107633",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 10.37864,
|
|
"posY": 1.03853178,
|
|
"posZ": 3.89812827,
|
|
"rotX": 0.108587012,
|
|
"rotY": 180.003082,
|
|
"rotZ": 359.79483,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agony and Despair",
|
|
"Description": "Agenda 2",
|
|
"GMNotes": "{\n \"id\": \"70004\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 7,\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": 12303,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e7d7cc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 10.7556477,
|
|
"posY": 1.18637288,
|
|
"posZ": 3.677581,
|
|
"rotX": 0.0820614547,
|
|
"rotY": 180.002274,
|
|
"rotZ": 359.71402,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Awakening",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "{\n \"id\": \"70002\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 6,\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": 12301,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "c69095",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.956053,
|
|
"posY": 1.59660506,
|
|
"posZ": -10.4411974,
|
|
"rotX": 1.40491014E-08,
|
|
"rotY": 270.01532,
|
|
"rotZ": -1.04614095E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "The Labyrinths of Lunacy",
|
|
"GMNotes": "{\"type\": \"ScenarioReference\", \"class\": \"Mythos\", \"tokens\": {\"back\": {\"Cultist\": {\"description\": \"-3. Place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. Discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token. If you fail, you must either take 1 damage or 1 horror.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. Lose 2 resources.\", \"modifier\": -4}}, \"front\": {\"Cultist\": {\"description\": \"-3. If you fail, place 1 of your clues on your location.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. If you fail, discard a random card from your hand.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1. Reveal another token.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-4. If you fail, lose 2 resources.\", \"modifier\": -4}}}, \"id\": \"70001\"}",
|
|
"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": 12300,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"123": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "cd5dde",
|
|
"Name": "Custom_PDF",
|
|
"Transform": {
|
|
"posX": -10.0876818,
|
|
"posY": 1.4814992,
|
|
"posZ": -26.2493477,
|
|
"rotX": -9.673974E-08,
|
|
"rotY": 270.000061,
|
|
"rotZ": 5.12220765E-07,
|
|
"scaleX": 2.99246836,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.99246836
|
|
},
|
|
"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": "https://images-cdn.fantasyflightgames.com/filer_public/3a/bc/3abc09ae-b9f5-4426-863f-540c548870ee/the_labyrinths_of_lunacy_rules.pdf",
|
|
"PDFPassword": "",
|
|
"PDFPage": 0,
|
|
"PDFPageOffset": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f4dcee",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -3.75469971,
|
|
"posY": 1.58300042,
|
|
"posZ": -14.8894072,
|
|
"rotX": -5.22544042E-07,
|
|
"rotY": 270.003571,
|
|
"rotZ": 4.38459466E-07,
|
|
"scaleX": 2.2,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.2
|
|
},
|
|
"Nickname": "The Labyrinths of Lunacy",
|
|
"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 = 'The Labyrinths of Lunacy'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\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\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n",
|
|
"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
|
|
}
|
|
}
|
|
]
|
|
} |