3680 lines
133 KiB
JSON
3680 lines
133 KiB
JSON
{
|
|
"GUID": "451eaa",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 12.2499809,
|
|
"posY": 1.48149908,
|
|
"posZ": 3.98635626,
|
|
"rotX": -3.15826782E-07,
|
|
"rotY": 269.999878,
|
|
"rotZ": 7.967888E-09,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Bad Blood",
|
|
"Description": "Challenge Scenario",
|
|
"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": true,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1655599785039299268/52DB5C3A0E600D6AECB0B851ECF90C5B3D016421/",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 3,
|
|
"TypeIndex": 6,
|
|
"CustomShader": {
|
|
"SpecularColor": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"SpecularIntensity": 0.0,
|
|
"SpecularSharpness": 2.0,
|
|
"FresnelStrength": 0.0
|
|
},
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
|
|
"LuaScriptState": "{\"ml\":{\"007d36\":{\"lock\":false,\"pos\":{\"x\":-36.7731895446777,\"y\":1.64407479763031,\"z\":-7.70001554489136},\"rot\":{\"x\":359.920104980469,\"y\":269.999328613281,\"z\":0.0168409943580627}},\"00d19a\":{\"lock\":false,\"pos\":{\"x\":-38.7164535522461,\"y\":1.68264377117157,\"z\":-9.52374649047852},\"rot\":{\"x\":359.920104980469,\"y\":270.002807617188,\"z\":0.0168448258191347}},\"061a07\":{\"lock\":false,\"pos\":{\"x\":-20.4535999298096,\"y\":1.60994374752045,\"z\":-0.111300319433212},\"rot\":{\"x\":0.0798908993601799,\"y\":89.9882278442383,\"z\":359.983123779297}},\"0678e8\":{\"lock\":false,\"pos\":{\"x\":-23.6764717102051,\"y\":1.63030004501343,\"z\":7.56998538970947},\"rot\":{\"x\":359.920104980469,\"y\":269.999389648438,\"z\":0.0168406069278717}},\"06d6fe\":{\"lock\":false,\"pos\":{\"x\":-25.4280700683594,\"y\":1.68353700637817,\"z\":5.99185943603516},\"rot\":{\"x\":359.922698974609,\"y\":269.999755859375,\"z\":1.47544634342194}},\"07f90c\":{\"lock\":false,\"pos\":{\"x\":-27.1247005462646,\"y\":1.6170357465744,\"z\":-7.63210105895996},\"rot\":{\"x\":359.920104980469,\"y\":270.008087158203,\"z\":0.0168558973819017}},\"165dac\":{\"lock\":false,\"pos\":{\"x\":-2.68851804733276,\"y\":1.59734869003296,\"z\":-5.04851770401001},\"rot\":{\"x\":0.0168365500867367,\"y\":179.999603271484,\"z\":0.0802549868822098}},\"25f3c2\":{\"lock\":false,\"pos\":{\"x\":-18.6359195709229,\"y\":1.67094278335571,\"z\":-1.67357134819031},\"rot\":{\"x\":359.919982910156,\"y\":269.996643066406,\"z\":1.39543783664703}},\"2a3c87\":{\"lock\":false,\"pos\":{\"x\":-23.6765213012695,\"y\":1.62581241130829,\"z\":-7.70001459121704},\"rot\":{\"x\":359.920104980469,\"y\":269.999328613281,\"z\":0.0168407671153545}},\"30ed35\":{\"lock\":false,\"pos\":{\"x\":-18.5939636230469,\"y\":1.66943037509918,\"z\":-9.29181957244873},\"rot\":{\"x\":359.921173095703,\"y\":269.976348876953,\"z\":1.46869027614594}},\"34e74c\":{\"lock\":false,\"pos\":{\"x\":-33.5060005187988,\"y\":1.62598347663879,\"z\":-7.46410274505615},\"rot\":{\"x\":359.920104980469,\"y\":270.002014160156,\"z\":0.0168642066419125}},\"377b20\":{\"lock\":false,\"pos\":{\"x\":-30.2241649627686,\"y\":1.6371967792511,\"z\":-0.0300150476396084},\"rot\":{\"x\":359.920104980469,\"y\":269.999450683594,\"z\":0.0168403703719378}},\"3b4478\":{\"lock\":false,\"pos\":{\"x\":-32.1027717590332,\"y\":1.68981921672821,\"z\":-1.61117219924927},\"rot\":{\"x\":1.05327343940735,\"y\":269.993774414063,\"z\":0.784092843532562}},\"3d7245\":{\"lock\":false,\"pos\":{\"x\":-20.472448348999,\"y\":1.60774183273315,\"z\":-7.69286489486694},\"rot\":{\"x\":0.0798909068107605,\"y\":89.9881896972656,\"z\":359.983123779297}},\"428e26\":{\"lock\":false,\"pos\":{\"x\":-12.8403749465942,\"y\":1.65113496780396,\"z\":6.03833913803101},\"rot\":{\"x\":359.920104980469,\"y\":269.981506347656,\"z\":0.0168634727597237}},\"510265\":{\"lock\":false,\"pos\":{\"x\":-3.38745307922363,\"y\":1.58178853988647,\"z\":-15.034649848938},\"rot\":{\"x\":359.919738769531,\"y\":270.001312255859,\"z\":0.0168359484523535}},\"5789a0\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.6133451461792,\"z\":-3.82999897003174},\"rot\":{\"x\":359.983184814453,\"y\":0.0180035475641489,\"z\":359.920043945313}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.6156051158905,\"z\":3.86000037193298},\"rot\":{\"x\":359.983184814453,\"y\":0.0184735096991062,\"z\":359.920043945313}},\"73f813\":{\"lock\":false,\"pos\":{\"x\":-23.6764583587646,\"y\":1.6280665397644,\"z\":-0.0300134774297476},\"rot\":{\"x\":359.920104980469,\"y\":269.997406005859,\"z\":0.0168432109057903}},\"847357\":{\"lock\":false,\"pos\":{\"x\":-3.95591735839844,\"y\":1.59753930568695,\"z\":-10.4411735534668},\"rot\":{\"x\":359.919738769531,\"y\":269.999694824219,\"z\":0.0168375447392464}},\"88a71f\":{\"lock\":false,\"pos\":{\"x\":-15.3431625366211,\"y\":1.61713230609894,\"z\":2.30415105819702},\"rot\":{\"x\":359.920104980469,\"y\":269.991577148438,\"z\":0.0168513152748346}},\"88e9a0\":{\"lock\":false,\"pos\":{\"x\":-25.3403053283691,\"y\":1.68284678459167,\"z\":-1.50465857982636},\"rot\":{\"x\":359.922943115234,\"y\":269.98291015625,\"z\":1.63856101036072}},\"927692\":{\"lock\":false,\"pos\":{\"x\":-30.224235534668,\"y\":1.63494277000427,\"z\":-7.70001649856567},\"rot\":{\"x\":359.920104980469,\"y\":269.999450683594,\"z\":0.0168404299765825}},\"99909c\":{\"lock\":false,\"pos\":{\"x\":-30.2242984771729,\"y\":1.62247550487518,\"z\":-3.82999992370605},\"rot\":{\"x\":359.983184814453,\"y\":0.0181040540337563,\"z\":359.920043945313}},\"9c1b91\":{\"lock\":false,\"pos\":{\"x\":-11.84925365448,\"y\":1.4153037071228,\"z\":8.0305700302124},\"rot\":{\"x\":359.983154296875,\"y\":5.82942702749278E-05,\"z\":359.920043945313}},\"a00323\":{\"lock\":false,\"pos\":{\"x\":-2.72483348846436,\"y\":1.59899258613586,\"z\":0.372691959142685},\"rot\":{\"x\":0.0168312788009644,\"y\":180.003341674805,\"z\":0.0802560299634933}},\"adebd8\":{\"lock\":false,\"pos\":{\"x\":-27.4881000518799,\"y\":1.62100207805634,\"z\":4.13960027694702},\"rot\":{\"x\":359.955383300781,\"y\":225.012222290039,\"z\":0.0683689713478088}},\"b5637e\":{\"lock\":false,\"pos\":{\"x\":-25.1550369262695,\"y\":1.67983627319336,\"z\":-9.20204162597656},\"rot\":{\"x\":359.921356201172,\"y\":270.007080078125,\"z\":1.59127795696259}},\"b8619a\":{\"lock\":false,\"pos\":{\"x\":-3.9276659488678,\"y\":1.75400519371033,\"z\":5.75231170654297},\"rot\":{\"x\":359.919738769531,\"y\":269.999328613281,\"z\":180.016815185547}},\"c5f67a\":{\"lock\":false,\"pos\":{\"x\":-17.1200084686279,\"y\":1.61666977405548,\"z\":-7.70001411437988},\"rot\":{\"x\":359.920104980469,\"y\":269.999176025391,\"z\":0.0168416071683168}},\"d0aa0f\":{\"lock\":false,\"pos\":{\"x\":-1.46558129787445,\"y\":1.47562265396118,\"z\":-26.9304294586182},\"rot\":{\"x\":359.920135498047,\"y\":269.998718261719,\"z\":0.0168742313981056}},\"ef5528\":{\"lock\":false,\"pos\":{\"x\":-31.8565654754639,\"y\":1.68725693225861,\"z\":-9.34178924560547},\"rot\":{\"x\":359.925323486328,\"y\":269.992340087891,\"z\":1.40744805335999}},\"f61f6c\":{\"lock\":false,\"pos\":{\"x\":-17.1199321746826,\"y\":1.61892378330231,\"z\":-0.0300151035189629},\"rot\":{\"x\":359.920104980469,\"y\":269.999389648438,\"z\":0.0168404094874859}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "007d36",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -36.773243,
|
|
"posY": 1.53360486,
|
|
"posZ": -7.70001,
|
|
"rotX": -1.84570315E-08,
|
|
"rotY": 269.999329,
|
|
"rotZ": 7.963624E-09,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Velma's Diner",
|
|
"Description": "Arkham.",
|
|
"GMNotes": "{\n \"id\": \"04141\",\n \"type\": \"Location\",\n \"traits\": \"Arkham.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"FromEasttown\",\n \"connections\": \"Crescent\"\n },\n \"locationBack\": {\n \"icons\": \"FromEasttown\",\n \"connections\": \"Crescent\"\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": 235505,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2355": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777261131/3E6F9DF9591B05CCE2257F910B261776662220BF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777261683/0D1AA3DD1777795A7A85C5891B15A2EC85BEDBD3/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "00d19a",
|
|
"Name": "Custom_Token",
|
|
"Transform": {
|
|
"posX": -38.71656,
|
|
"posY": 1.57000017,
|
|
"posZ": -9.52373,
|
|
"rotX": 6.96664356E-05,
|
|
"rotY": 270.002747,
|
|
"rotZ": -2.814472E-07,
|
|
"scaleX": 0.3331147,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.3331147
|
|
},
|
|
"Nickname": "Memory",
|
|
"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": false,
|
|
"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/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/",
|
|
"ImageSecondaryURL": "",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomToken": {
|
|
"Thickness": 0.1,
|
|
"MergeDistancePixels": 5.0,
|
|
"StandUp": false,
|
|
"Stackable": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0678e8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -23.676527,
|
|
"posY": 1.53373456,
|
|
"posZ": 7.570002,
|
|
"rotX": 0.0018518517,
|
|
"rotY": 269.999451,
|
|
"rotZ": 0.00419071876,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Miskatonic University",
|
|
"Description": "Arkham.",
|
|
"GMNotes": "{\n \"id\": \"01129\",\n \"type\": \"Location\",\n \"traits\": \"Arkham.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond\",\n \"connections\": \"Tee|Plus|Circle|Square\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Diamond\",\n \"connections\": \"Tee|Plus|Circle|Square\",\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": 232310,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2323": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "06d6fe",
|
|
"Name": "Custom_Token",
|
|
"Transform": {
|
|
"posX": -25.4281654,
|
|
"posY": 1.58446836,
|
|
"posZ": 5.99192333,
|
|
"rotX": 0.00717762159,
|
|
"rotY": 269.999329,
|
|
"rotZ": 1.42157936,
|
|
"scaleX": 0.3331147,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.3331147
|
|
},
|
|
"Nickname": "Memory",
|
|
"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": false,
|
|
"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/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/",
|
|
"ImageSecondaryURL": "",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomToken": {
|
|
"Thickness": 0.1,
|
|
"MergeDistancePixels": 5.0,
|
|
"StandUp": false,
|
|
"Stackable": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "165dac",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -2.68853879,
|
|
"posY": 1.59660506,
|
|
"posZ": -5.04851675,
|
|
"rotX": 3.91017743E-08,
|
|
"rotY": 179.999619,
|
|
"rotZ": 1.01323669E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "A Walk Down Memory Lane",
|
|
"Description": "Act 1",
|
|
"GMNotes": "{\n \"id\": \"90022\",\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": 266402,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868372/5C2FC3F391C6D3B287C38B875F83629110163282/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868958/4F366892FB57AF3841513790E41E15D85E9DC211/",
|
|
"NumWidth": 4,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "25f3c2",
|
|
"Name": "Custom_Token",
|
|
"Transform": {
|
|
"posX": -18.636034,
|
|
"posY": 1.58377755,
|
|
"posZ": -1.67347753,
|
|
"rotX": 0.00393354846,
|
|
"rotY": 269.9955,
|
|
"rotZ": 1.35531759,
|
|
"scaleX": 0.3331147,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.3331147
|
|
},
|
|
"Nickname": "Memory",
|
|
"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": false,
|
|
"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/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/",
|
|
"ImageSecondaryURL": "",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomToken": {
|
|
"Thickness": 0.1,
|
|
"MergeDistancePixels": 5.0,
|
|
"StandUp": false,
|
|
"Stackable": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2a3c87",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -23.67659,
|
|
"posY": 1.53373456,
|
|
"posZ": -7.699992,
|
|
"rotX": 0.00185910147,
|
|
"rotY": 269.999084,
|
|
"rotZ": 0.00418523373,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Downtown",
|
|
"Description": "Arkham.",
|
|
"GMNotes": "{\n \"id\": \"01130\",\n \"type\": \"Location\",\n \"traits\": \"Arkham.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Crescent|Tee|FromDowntown\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Crescent|Tee|FromDowntown\",\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": 232311,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2323": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "30ed35",
|
|
"Name": "Custom_Token",
|
|
"Transform": {
|
|
"posX": -18.5940742,
|
|
"posY": 1.58442211,
|
|
"posZ": -9.291754,
|
|
"rotX": 0.00200423365,
|
|
"rotY": 269.9763,
|
|
"rotZ": 1.41983759,
|
|
"scaleX": 0.3331147,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.3331147
|
|
},
|
|
"Nickname": "Memory",
|
|
"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": false,
|
|
"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/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/",
|
|
"ImageSecondaryURL": "",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomToken": {
|
|
"Thickness": 0.1,
|
|
"MergeDistancePixels": 5.0,
|
|
"StandUp": false,
|
|
"Stackable": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "377b20",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -30.22424,
|
|
"posY": 1.5337007,
|
|
"posZ": -0.0300264526,
|
|
"rotX": 0.00131694472,
|
|
"rotY": 269.9989,
|
|
"rotZ": 0.003148698,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Rivertown",
|
|
"Description": "Arkham. Central.",
|
|
"GMNotes": "{\n \"id\": \"01125\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Central.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"Crescent|Diamond|Square|Tilde|Hourglass\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"Crescent|Diamond|Square|Tilde|Hourglass\",\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": 232306,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2323": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3b4478",
|
|
"Name": "Custom_Token",
|
|
"Transform": {
|
|
"posX": -32.1023445,
|
|
"posY": 1.58382237,
|
|
"posZ": -1.61140454,
|
|
"rotX": 0.8444183,
|
|
"rotY": 269.9914,
|
|
"rotZ": 0.9080159,
|
|
"scaleX": 0.3331147,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.3331147
|
|
},
|
|
"Nickname": "Memory",
|
|
"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": false,
|
|
"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/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/",
|
|
"ImageSecondaryURL": "",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomToken": {
|
|
"Thickness": 0.1,
|
|
"MergeDistancePixels": 5.0,
|
|
"StandUp": false,
|
|
"Stackable": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "428e26",
|
|
"Name": "Custom_Token",
|
|
"Transform": {
|
|
"posX": -12.8404636,
|
|
"posY": 1.57000053,
|
|
"posZ": 6.0383606,
|
|
"rotX": -6.175902E-05,
|
|
"rotY": 269.981537,
|
|
"rotZ": 5.35749241E-05,
|
|
"scaleX": 0.3331147,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.3331147
|
|
},
|
|
"Nickname": "Memory",
|
|
"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": false,
|
|
"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/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/",
|
|
"ImageSecondaryURL": "",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomToken": {
|
|
"Thickness": 0.1,
|
|
"MergeDistancePixels": 5.0,
|
|
"StandUp": false,
|
|
"Stackable": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "510265",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -3.38745141,
|
|
"posY": 1.58300042,
|
|
"posZ": -15.0346537,
|
|
"rotX": -2.22896887E-07,
|
|
"rotY": 270.001251,
|
|
"rotZ": 3.61287135E-07,
|
|
"scaleX": 2.2,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.2
|
|
},
|
|
"Nickname": "Bad Blood",
|
|
"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 = 'Bad Blood'\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": ""
|
|
},
|
|
{
|
|
"GUID": "73f813",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -23.6765442,
|
|
"posY": 1.53377652,
|
|
"posZ": -0.0299884491,
|
|
"rotX": 0.00224374956,
|
|
"rotY": 269.996552,
|
|
"rotZ": 0.00582745858,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Northside",
|
|
"Description": "Arkham.",
|
|
"GMNotes": "{\n \"id\": \"01134\",\n \"type\": \"Location\",\n \"traits\": \"Arkham.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Triangle|FromNorthside\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Tee\",\n \"connections\": \"Diamond|Triangle|FromNorthside\",\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": 232315,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2323": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "847357",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.95593977,
|
|
"posY": 1.59660506,
|
|
"posZ": -10.4411774,
|
|
"rotX": 3.5321964E-08,
|
|
"rotY": 269.999634,
|
|
"rotZ": 4.47614568E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "Bad Blood",
|
|
"GMNotes": "{\"type\": \"ScenarioReference\", \"class\": \"Mythos\", \"tokens\": {\"back\": {\"Cultist\": {\"description\": \"-3. Ready Elspeth Baudin and resolve her patrol keyword. If she is engaged with an investigator, she makes an attack.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-8. Agnes Baker may take up to 3 damage to increase your skill value by 2 for each damage taken.\", \"modifier\": -8}, \"Skull\": {\"description\": \"-X. X is 1 more than the number of memories Agnes Baker has collected.\", \"modifier\": -999}, \"Tablet\": {\"description\": \"-5. If you fail and there is a memory at Elspeth Baudin's location, place this token on that location.\", \"modifier\": -5}}, \"front\": {\"Cultist\": {\"description\": \"-2. Ready Elspeth Baudin and resolve her patrol keyword.\", \"modifier\": -2}, \"Elder Thing\": {\"description\": \"-6. Agnes Baker may take up to 3 damage to increase your skill value by 2 for each damage taken.\", \"modifier\": -6}, \"Skull\": {\"description\": \"-X. X is the number of memories Agnes Baker has collected.\", \"modifier\": -999}, \"Tablet\": {\"description\": \"-3. If you fail and there is a memory at Elspeth Baudin's location, place this token on that location.\", \"modifier\": -3}}}, \"id\": \"90020\"}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 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": 266400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868372/5C2FC3F391C6D3B287C38B875F83629110163282/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868958/4F366892FB57AF3841513790E41E15D85E9DC211/",
|
|
"NumWidth": 4,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "88a71f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.3431988,
|
|
"posY": 1.53360486,
|
|
"posZ": 2.30416179,
|
|
"rotX": -1.6876589E-08,
|
|
"rotY": 269.991516,
|
|
"rotZ": 3.19109361E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Elspeth Baudin",
|
|
"Description": "Hyperborean Sorceress",
|
|
"GMNotes": "{\n \"id\": \"90023\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Sorcerer. Elite.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266403,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2664": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868372/5C2FC3F391C6D3B287C38B875F83629110163282/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868958/4F366892FB57AF3841513790E41E15D85E9DC211/",
|
|
"NumWidth": 4,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "88e9a0",
|
|
"Name": "Custom_Token",
|
|
"Transform": {
|
|
"posX": -25.3410988,
|
|
"posY": 1.58625567,
|
|
"posZ": -1.50410414,
|
|
"rotX": 0.417133957,
|
|
"rotY": 269.9972,
|
|
"rotZ": 1.3818357,
|
|
"scaleX": 0.3331147,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.3331147
|
|
},
|
|
"Nickname": "Memory",
|
|
"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": false,
|
|
"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/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/",
|
|
"ImageSecondaryURL": "",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomToken": {
|
|
"Thickness": 0.1,
|
|
"MergeDistancePixels": 5.0,
|
|
"StandUp": false,
|
|
"Stackable": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "927692",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -30.2243214,
|
|
"posY": 1.53370023,
|
|
"posZ": -7.70003366,
|
|
"rotX": 0.00131933147,
|
|
"rotY": 269.998566,
|
|
"rotZ": 0.00313099357,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Easttown",
|
|
"Description": "Arkham.",
|
|
"GMNotes": "{\n \"id\": \"01132\",\n \"type\": \"Location\",\n \"traits\": \"Arkham.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Circle|Triangle|FromEasttown\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Circle|Triangle|FromEasttown\",\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": 232313,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2323": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9c1b91",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": -11.8489323,
|
|
"posY": 1.33496583,
|
|
"posZ": 8.030439,
|
|
"rotX": 5.96306563E-06,
|
|
"rotY": -0.000347025634,
|
|
"rotZ": -3.238355E-06,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Threads of Fate Locations",
|
|
"Description": "Choose one randomly. Be sure to place the Memory as well!",
|
|
"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": 2
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "9bec2d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -0.412863284,
|
|
"posY": 3.91704226,
|
|
"posZ": -13.1325712,
|
|
"rotX": 1.56416058E-06,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Missing Persons",
|
|
"Description": "Act 1c",
|
|
"GMNotes": "{\n \"id\": \"04126a\",\n \"type\": \"Location\",\n \"clueThresholdPerInvestigator\": 1,\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"FromEasttown\",\n \"connections\": \"Crescent\",\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": true,
|
|
"Hands": true,
|
|
"CardID": 234523,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777202805/81C13FF317351E1956828A006E42B5F958402706/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777204414/069B45DA5FC54E05F7D416CA87A45E9FF478C840/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5611a1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.64666176,
|
|
"posY": 3.13099527,
|
|
"posZ": -2.12859,
|
|
"rotX": -8.238003E-08,
|
|
"rotY": 270.0,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Trial of the Huntress",
|
|
"Description": "Act 1e",
|
|
"GMNotes": "{\n \"id\": \"04133a\",\n \"type\": \"Location\",\n \"clueThresholdPerInvestigator\": 2,\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Hourglass\",\n \"connections\": \"Circle\",\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": true,
|
|
"Hands": true,
|
|
"CardID": 234530,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777202805/81C13FF317351E1956828A006E42B5F958402706/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777204414/069B45DA5FC54E05F7D416CA87A45E9FF478C840/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f286ef",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -5.01562452,
|
|
"posY": 3.64946079,
|
|
"posZ": 14.9604778,
|
|
"rotX": 1.35087144,
|
|
"rotY": 269.946472,
|
|
"rotZ": 176.631775,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "At the Station",
|
|
"Description": "Act 2c",
|
|
"GMNotes": "{\n \"id\": \"04128a\",\n \"type\": \"Location\",\n \"traits\": \"Arkham.\",\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"icons\": \"FromNorthside\",\n \"connections\": \"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": 234525,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777202805/81C13FF317351E1956828A006E42B5F958402706/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777204414/069B45DA5FC54E05F7D416CA87A45E9FF478C840/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b5a536",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -4.38787031,
|
|
"posY": 3.67095566,
|
|
"posZ": 14.6621437,
|
|
"rotX": 358.2971,
|
|
"rotY": 270.0256,
|
|
"rotZ": 178.640671,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Relic is Missing!",
|
|
"Description": "Act 1a",
|
|
"GMNotes": "{\n \"id\": \"04117a\",\n \"type\": \"Location\",\n \"traits\": \"Miskatonic. Exhibit.\",\n \"cycle\": \"Standalone\",\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Plus\",\n \"connections\": \"Diamond\",\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": 234514,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2345": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777202805/81C13FF317351E1956828A006E42B5F958402706/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777204414/069B45DA5FC54E05F7D416CA87A45E9FF478C840/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "a00323",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -2.72485662,
|
|
"posY": 1.59660506,
|
|
"posZ": 0.372697443,
|
|
"rotX": 2.65154618E-08,
|
|
"rotY": 180.003357,
|
|
"rotZ": -2.01040677E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hyperborean Blood",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "{\n \"id\": \"90021\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 8,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 266501,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2665": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868372/5C2FC3F391C6D3B287C38B875F83629110163282/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655599785038868958/4F366892FB57AF3841513790E41E15D85E9DC211/",
|
|
"NumWidth": 4,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b5637e",
|
|
"Name": "Custom_Token",
|
|
"Transform": {
|
|
"posX": -25.1553841,
|
|
"posY": 1.58593583,
|
|
"posZ": -9.201865,
|
|
"rotX": 0.121466309,
|
|
"rotY": 270.0114,
|
|
"rotZ": 1.50616109,
|
|
"scaleX": 0.3331147,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.3331147
|
|
},
|
|
"Nickname": "Memory",
|
|
"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": false,
|
|
"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/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/",
|
|
"ImageSecondaryURL": "",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomToken": {
|
|
"Thickness": 0.1,
|
|
"MergeDistancePixels": 5.0,
|
|
"StandUp": false,
|
|
"Stackable": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b8619a",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.927907,
|
|
"posY": 1.74835181,
|
|
"posZ": 5.7523675,
|
|
"rotX": -1.29659725E-07,
|
|
"rotY": 269.999359,
|
|
"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": [
|
|
540022,
|
|
540022,
|
|
540022,
|
|
540023,
|
|
540024,
|
|
540024,
|
|
235737,
|
|
235737,
|
|
235738,
|
|
235738,
|
|
235739,
|
|
235739,
|
|
235745,
|
|
235745,
|
|
235745,
|
|
235746,
|
|
235746,
|
|
235747,
|
|
235747,
|
|
540027,
|
|
540027,
|
|
540004,
|
|
540004,
|
|
540003,
|
|
540003,
|
|
540003,
|
|
540025,
|
|
540025,
|
|
540026,
|
|
540026
|
|
],
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "4911f2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.81347585,
|
|
"posY": 1.9591794,
|
|
"posZ": 7.54692268,
|
|
"rotX": 359.921844,
|
|
"rotY": 270.016785,
|
|
"rotZ": 354.928131,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Acolyte",
|
|
"Description": "Humanoid. Cultist.",
|
|
"GMNotes": "{\n \"id\": \"01169\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Cultist.\",\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Doom\",\n \"token\": \"doom\"\n }\n ],\n \"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": 540022,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "50fdc5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.692011,
|
|
"posY": 1.60273135,
|
|
"posZ": 8.485747,
|
|
"rotX": 359.919739,
|
|
"rotY": 269.999725,
|
|
"rotZ": 0.0168374088,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Acolyte",
|
|
"Description": "Humanoid. Cultist.",
|
|
"GMNotes": "{\n \"id\": \"01169\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Cultist.\",\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Doom\",\n \"token\": \"doom\"\n }\n ],\n \"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": 540022,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fe7dc4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.721113,
|
|
"posY": 1.9771179,
|
|
"posZ": 7.768363,
|
|
"rotX": 359.925018,
|
|
"rotY": 270.040161,
|
|
"rotZ": 347.514374,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Acolyte",
|
|
"Description": "Humanoid. Cultist.",
|
|
"GMNotes": "{\n \"id\": \"01169\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Cultist.\",\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Doom\",\n \"token\": \"doom\"\n }\n ],\n \"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": 540022,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d36612",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.75028348,
|
|
"posY": 1.951267,
|
|
"posZ": 7.71792936,
|
|
"rotX": 359.921661,
|
|
"rotY": 270.020752,
|
|
"rotZ": 354.2487,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Wizard of the Order",
|
|
"Description": "Humanoid. Cultist.",
|
|
"GMNotes": "{\n \"id\": \"01170\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 540023,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b347d1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.94618416,
|
|
"posY": 1.953377,
|
|
"posZ": 7.69395733,
|
|
"rotX": 359.912018,
|
|
"rotY": 270.018982,
|
|
"rotZ": 349.788147,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mysterious Chanting",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"01171\",\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": 540024,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d63054",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -4.24932432,
|
|
"posY": 1.66881728,
|
|
"posZ": 8.263629,
|
|
"rotX": 359.9325,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.01416134,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mysterious Chanting",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"01171\",\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": 540024,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "22c580",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.76474047,
|
|
"posY": 1.9198736,
|
|
"posZ": 8.129835,
|
|
"rotX": 359.931915,
|
|
"rotY": 270.0081,
|
|
"rotZ": 0.0139253112,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Brotherhood Cultist",
|
|
"Description": "Humanoid. Cultist.",
|
|
"GMNotes": "{\n \"id\": \"04095\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 235737,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "91e14a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -4.017778,
|
|
"posY": 1.67813826,
|
|
"posZ": 8.046427,
|
|
"rotX": 359.9325,
|
|
"rotY": 270.000061,
|
|
"rotZ": 0.0141649367,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Brotherhood Cultist",
|
|
"Description": "Humanoid. Cultist.",
|
|
"GMNotes": "{\n \"id\": \"04095\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 235737,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1098b0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.82979,
|
|
"posY": 1.949933,
|
|
"posZ": 7.91377974,
|
|
"rotX": 359.921967,
|
|
"rotY": 270.008331,
|
|
"rotZ": 352.220245,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Shadowed",
|
|
"Description": "Scheme.",
|
|
"GMNotes": "{\n \"id\": \"04096\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 235738,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4fa0c8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.71302724,
|
|
"posY": 1.87033641,
|
|
"posZ": 8.101307,
|
|
"rotX": 359.933075,
|
|
"rotY": 270.0062,
|
|
"rotZ": 0.0139921233,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Shadowed",
|
|
"Description": "Scheme.",
|
|
"GMNotes": "{\n \"id\": \"04096\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 235738,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fdde51",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.82536817,
|
|
"posY": 1.83938766,
|
|
"posZ": 7.98849154,
|
|
"rotX": 359.924072,
|
|
"rotY": 270.0373,
|
|
"rotZ": 0.004405579,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Words of Power",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"04097\",\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": 235739,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ceedf6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.70038152,
|
|
"posY": 1.64391077,
|
|
"posZ": 8.598213,
|
|
"rotX": 359.918152,
|
|
"rotY": 269.9886,
|
|
"rotZ": 0.006366,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Words of Power",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"04097\",\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": 235739,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0ea7bf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.91468573,
|
|
"posY": 1.68739378,
|
|
"posZ": 8.209216,
|
|
"rotX": 359.9379,
|
|
"rotY": 269.999817,
|
|
"rotZ": 0.013712924,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Secret Must Be Kept",
|
|
"Description": "Scheme.",
|
|
"GMNotes": "{\n \"id\": \"04144\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 235745,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4ca580",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.58888483,
|
|
"posY": 1.90102494,
|
|
"posZ": 8.293257,
|
|
"rotX": 359.933,
|
|
"rotY": 270.007843,
|
|
"rotZ": 0.0132258115,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Secret Must Be Kept",
|
|
"Description": "Scheme.",
|
|
"GMNotes": "{\n \"id\": \"04144\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 235745,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f08d50",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.65069246,
|
|
"posY": 1.933011,
|
|
"posZ": 7.807292,
|
|
"rotX": 359.940735,
|
|
"rotY": 270.0078,
|
|
"rotZ": 359.7926,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Secret Must Be Kept",
|
|
"Description": "Scheme.",
|
|
"GMNotes": "{\n \"id\": \"04144\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 235745,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "75701a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.65590787,
|
|
"posY": 1.87445772,
|
|
"posZ": 8.31758,
|
|
"rotX": 359.922882,
|
|
"rotY": 270.0243,
|
|
"rotZ": 359.296661,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Nobody's Home",
|
|
"Description": "Mystery.",
|
|
"GMNotes": "{\n \"id\": \"04145\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Mystery.\",\n \"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": 235746,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "034938",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.66667247,
|
|
"posY": 1.89448893,
|
|
"posZ": 8.150047,
|
|
"rotX": 359.932831,
|
|
"rotY": 270.008667,
|
|
"rotZ": 0.0135375727,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Nobody's Home",
|
|
"Description": "Mystery.",
|
|
"GMNotes": "{\n \"id\": \"04145\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Mystery.\",\n \"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": 235746,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c404e5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.86671424,
|
|
"posY": 1.95012772,
|
|
"posZ": 7.81499147,
|
|
"rotX": 359.920715,
|
|
"rotY": 270.0092,
|
|
"rotZ": 353.114441,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Conspiracy of Blood",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"04146\",\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": 235747,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a0b528",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.56604123,
|
|
"posY": 1.87954748,
|
|
"posZ": 8.246014,
|
|
"rotX": 359.933441,
|
|
"rotY": 270.0069,
|
|
"rotZ": 0.0131155262,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Conspiracy of Blood",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"04146\",\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": 235747,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2357": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4904d0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.69824243,
|
|
"posY": 1.94563758,
|
|
"posZ": 7.878649,
|
|
"rotX": 359.9204,
|
|
"rotY": 270.0036,
|
|
"rotZ": 353.799927,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Locked Door",
|
|
"Description": "Obstacle.",
|
|
"GMNotes": "{\n \"id\": \"01174\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Obstacle.\",\n \"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": 540027,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ab3719",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.84611368,
|
|
"posY": 1.97954619,
|
|
"posZ": 7.74542046,
|
|
"rotX": 359.9212,
|
|
"rotY": 270.061249,
|
|
"rotZ": 346.838531,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Locked Door",
|
|
"Description": "Obstacle.",
|
|
"GMNotes": "{\n \"id\": \"01174\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Obstacle.\",\n \"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": 540027,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2ceae2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.90559626,
|
|
"posY": 1.96752775,
|
|
"posZ": 7.736604,
|
|
"rotX": 359.919647,
|
|
"rotY": 269.999969,
|
|
"rotZ": 347.422058,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "False Lead",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"01136\",\n \"type\": \"Treachery\",\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": false,
|
|
"Hands": true,
|
|
"CardID": 540004,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "057d5f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.75155354,
|
|
"posY": 1.95138371,
|
|
"posZ": 7.767609,
|
|
"rotX": 359.909851,
|
|
"rotY": 270.0116,
|
|
"rotZ": 349.22937,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "False Lead",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"01136\",\n \"type\": \"Treachery\",\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": false,
|
|
"Hands": true,
|
|
"CardID": 540004,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ea8fcf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.58204412,
|
|
"posY": 1.958341,
|
|
"posZ": 7.715451,
|
|
"rotX": 359.9103,
|
|
"rotY": 269.9996,
|
|
"rotZ": 349.143341,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunting Shadow",
|
|
"Description": "Curse.",
|
|
"GMNotes": "{\n \"id\": \"01135\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Curse.\",\n \"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": false,
|
|
"Hands": true,
|
|
"CardID": 540003,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "14bfaf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.82991529,
|
|
"posY": 1.77385449,
|
|
"posZ": 8.100135,
|
|
"rotX": 359.9324,
|
|
"rotY": 270.003967,
|
|
"rotZ": 0.0138492258,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunting Shadow",
|
|
"Description": "Curse.",
|
|
"GMNotes": "{\n \"id\": \"01135\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Curse.\",\n \"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": false,
|
|
"Hands": true,
|
|
"CardID": 540003,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ab3719",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.56984735,
|
|
"posY": 1.936475,
|
|
"posZ": 8.227361,
|
|
"rotX": 359.928436,
|
|
"rotY": 270.010742,
|
|
"rotZ": 356.442627,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunting Shadow",
|
|
"Description": "Curse.",
|
|
"GMNotes": "{\n \"id\": \"01135\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Curse.\",\n \"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": false,
|
|
"Hands": true,
|
|
"CardID": 540003,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ab3719",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.91097,
|
|
"posY": 1.7838428,
|
|
"posZ": 8.370731,
|
|
"rotX": 359.932556,
|
|
"rotY": 270.0038,
|
|
"rotZ": 0.0141466158,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunting Nightgaunt",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"01172\",\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": 540025,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b75b70",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.73760986,
|
|
"posY": 1.96592343,
|
|
"posZ": 7.530754,
|
|
"rotX": 359.92157,
|
|
"rotY": 270.004883,
|
|
"rotZ": 353.1447,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunting Nightgaunt",
|
|
"Description": "Monster. Nightgaunt.",
|
|
"GMNotes": "{\n \"id\": \"01172\",\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": 540025,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1d0c1c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.68641,
|
|
"posY": 1.94001377,
|
|
"posZ": 7.75891829,
|
|
"rotX": 359.9319,
|
|
"rotY": 270.0099,
|
|
"rotZ": 358.9296,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "On Wings of Darkness",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"01173\",\n \"type\": \"Treachery\",\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": 540026,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1e04da",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.855868,
|
|
"posY": 1.880945,
|
|
"posZ": 7.92808056,
|
|
"rotX": 357.8972,
|
|
"rotY": 269.903046,
|
|
"rotZ": 356.962067,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "On Wings of Darkness",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"01173\",\n \"type\": \"Treachery\",\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": 540026,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"5400": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "c5f67a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1200581,
|
|
"posY": 1.53369892,
|
|
"posZ": -7.70000839,
|
|
"rotX": 0.00138129725,
|
|
"rotY": 269.999146,
|
|
"rotZ": 0.00298386463,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Town Hall",
|
|
"Description": "Arkham.",
|
|
"GMNotes": "{\n \"id\": \"04143\",\n \"type\": \"Location\",\n \"traits\": \"Arkham.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"FromDowntown\",\n \"connections\": \"Triangle\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"FromDowntown\",\n \"connections\": \"Triangle\",\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": true,
|
|
"Hands": true,
|
|
"CardID": 235507,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2355": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777261131/3E6F9DF9591B05CCE2257F910B261776662220BF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777261683/0D1AA3DD1777795A7A85C5891B15A2EC85BEDBD3/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d0aa0f",
|
|
"Name": "Custom_PDF",
|
|
"Transform": {
|
|
"posX": -1.46557248,
|
|
"posY": 1.48149931,
|
|
"posZ": -26.9304314,
|
|
"rotX": 2.11740712E-07,
|
|
"rotY": 269.998657,
|
|
"rotZ": 5.658632E-07,
|
|
"scaleX": 2.48152614,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.48152614
|
|
},
|
|
"Nickname": "Bad Blood Campaign Guide",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomPDF": {
|
|
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1655599785039320278/56CF5330DFBEE30583ACECC20CD61F95AEF29F6E/",
|
|
"PDFPassword": "",
|
|
"PDFPage": 0,
|
|
"PDFPageOffset": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ef5528",
|
|
"Name": "Custom_Token",
|
|
"Transform": {
|
|
"posX": -31.8566723,
|
|
"posY": 1.58375788,
|
|
"posZ": -9.341706,
|
|
"rotX": 0.007758241,
|
|
"rotY": 269.991577,
|
|
"rotZ": 1.35138774,
|
|
"scaleX": 0.3331147,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.3331147
|
|
},
|
|
"Nickname": "Memory",
|
|
"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": false,
|
|
"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/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/",
|
|
"ImageSecondaryURL": "",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomToken": {
|
|
"Thickness": 0.1,
|
|
"MergeDistancePixels": 5.0,
|
|
"StandUp": false,
|
|
"Stackable": true
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f61f6c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1200047,
|
|
"posY": 1.533692,
|
|
"posZ": -0.0300330557,
|
|
"rotX": 0.00116949819,
|
|
"rotY": 269.998169,
|
|
"rotZ": 0.0029060333,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Curiositie Shoppe",
|
|
"Description": "Arkham.",
|
|
"GMNotes": "{\n \"id\": \"04142\",\n \"type\": \"Location\",\n \"traits\": \"Arkham.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"FromNorthside\",\n \"connections\": \"Tee\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"FromNorthside\",\n \"connections\": \"Tee\",\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": true,
|
|
"Hands": true,
|
|
"CardID": 235506,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2355": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777261131/3E6F9DF9591B05CCE2257F910B261776662220BF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1467561769777261683/0D1AA3DD1777795A7A85C5891B15A2EC85BEDBD3/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
],
|
|
"AttachedDecals": [
|
|
{
|
|
"Transform": {
|
|
"posX": -0.0021877822,
|
|
"posY": -0.08963572,
|
|
"posZ": -0.00288731651,
|
|
"rotX": 270.0,
|
|
"rotY": 359.869568,
|
|
"rotZ": 0.0,
|
|
"scaleX": 2.00000215,
|
|
"scaleY": 2.00000238,
|
|
"scaleZ": 2.00000262
|
|
},
|
|
"CustomDecal": {
|
|
"Name": "dunwich_back",
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
|
|
"Size": 7.4
|
|
}
|
|
}
|
|
]
|
|
} |