3133 lines
116 KiB
JSON
3133 lines
116 KiB
JSON
{
|
|
"GUID": "9e73fa",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 12.2500811,
|
|
"posY": 1.48149931,
|
|
"posZ": -12.0136509,
|
|
"rotX": -1.33903129E-07,
|
|
"rotY": 269.999756,
|
|
"rotZ": 4.36443734E-08,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Read or Die",
|
|
"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/1655599785039304850/852232605656B7DD6577C475A1988491D3378506/",
|
|
"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\":{\"0b6166\":{\"lock\":false,\"pos\":{\"x\":-30.2242164611816,\"y\":1.63494277000427,\"z\":-7.69999742507935},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168405212461948}},\"116eb9\":{\"lock\":false,\"pos\":{\"x\":-17.1200122833252,\"y\":1.62114298343658,\"z\":7.57000160217285},\"rot\":{\"x\":359.920227050781,\"y\":270.000030517578,\"z\":0.0158715806901455}},\"1ed6d5\":{\"lock\":false,\"pos\":{\"x\":-26.8623008728027,\"y\":1.61759853363037,\"z\":-4.47279977798462},\"rot\":{\"x\":0.0445885099470615,\"y\":44.9998931884766,\"z\":359.931610107422}},\"25652c\":{\"lock\":false,\"pos\":{\"x\":-23.6765003204346,\"y\":1.61669516563416,\"z\":7.57000017166138},\"rot\":{\"x\":359.920104980469,\"y\":270.010955810547,\"z\":0.0168545935302973}},\"4541f6\":{\"lock\":false,\"pos\":{\"x\":-23.6765174865723,\"y\":1.6280665397644,\"z\":-0.0298972446471453},\"rot\":{\"x\":359.920104980469,\"y\":269.998687744141,\"z\":0.0168421491980553}},\"47b306\":{\"lock\":false,\"pos\":{\"x\":-30.2244167327881,\"y\":1.63271534442902,\"z\":-15.2799968719482},\"rot\":{\"x\":359.920104980469,\"y\":269.999572753906,\"z\":0.0168408285826445}},\"4901f8\":{\"lock\":false,\"pos\":{\"x\":-26.8973007202148,\"y\":1.61895155906677,\"z\":-0.0345002859830856},\"rot\":{\"x\":359.920104980469,\"y\":270.011077880859,\"z\":0.0168521460145712}},\"4bd010\":{\"lock\":false,\"pos\":{\"x\":-36.7731170654297,\"y\":1.64632892608643,\"z\":-0.0299971085041761},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168413035571575}},\"52e361\":{\"lock\":false,\"pos\":{\"x\":-15.0137166976929,\"y\":1.61305797100067,\"z\":-9.99599838256836},\"rot\":{\"x\":359.920104980469,\"y\":270,\"z\":0.0168404802680016}},\"556e96\":{\"lock\":false,\"pos\":{\"x\":-3.92741346359253,\"y\":1.76363432407379,\"z\":5.75710344314575},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016815185547}},\"64a96b\":{\"lock\":false,\"pos\":{\"x\":-17.1201171875,\"y\":1.61667001247406,\"z\":-7.69999647140503},\"rot\":{\"x\":359.920104980469,\"y\":269.999908447266,\"z\":0.0168406590819359}},\"70df0b\":{\"lock\":false,\"pos\":{\"x\":-30.2243175506592,\"y\":1.63943064212799,\"z\":7.5700044631958},\"rot\":{\"x\":359.920104980469,\"y\":269.999786376953,\"z\":0.0168404951691628}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.6012001037598,\"y\":1.62827694416046,\"z\":-0.112300202250481},\"rot\":{\"x\":359.920104980469,\"y\":270.011199951172,\"z\":0.0168518424034119}},\"739b98\":{\"lock\":false,\"pos\":{\"x\":-27.0615997314453,\"y\":1.62033677101135,\"z\":3.89890003204346},\"rot\":{\"x\":359.931579589844,\"y\":314.992584228516,\"z\":359.955413818359}},\"7d30ce\":{\"lock\":false,\"pos\":{\"x\":-20.560697555542,\"y\":1.60903918743134,\"z\":-3.69760060310364},\"rot\":{\"x\":359.931579589844,\"y\":314.995727539063,\"z\":359.955413818359}},\"7f6452\":{\"lock\":false,\"pos\":{\"x\":-14.7655344009399,\"y\":1.63109755516052,\"z\":5.0237078666687},\"rot\":{\"x\":359.460418701172,\"y\":0.0547760464251041,\"z\":359.920104980469}},\"7f7fb0\":{\"lock\":false,\"pos\":{\"x\":-1.46529912948608,\"y\":1.47562229633331,\"z\":-26.9304046630859},\"rot\":{\"x\":359.920135498047,\"y\":269.998687744141,\"z\":0.0168741643428802}},\"9229a8\":{\"lock\":false,\"pos\":{\"x\":-3.8162043094635,\"y\":1.60489428043365,\"z\":15.2543392181396},\"rot\":{\"x\":359.919738769531,\"y\":270.025726318359,\"z\":0.0168026704341173}},\"a2fcc1\":{\"lock\":false,\"pos\":{\"x\":-3.9560170173645,\"y\":1.59753942489624,\"z\":-10.4411973953247},\"rot\":{\"x\":359.919738769531,\"y\":269.999694824219,\"z\":0.016838489100337}},\"b00f35\":{\"lock\":false,\"pos\":{\"x\":-30.2242164611816,\"y\":1.63719689846039,\"z\":-0.0299969501793385},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":0.0168402399867773}},\"b58f4c\":{\"lock\":false,\"pos\":{\"x\":-2.72471642494202,\"y\":1.59899258613586,\"z\":0.373303711414337},\"rot\":{\"x\":0.0168358348309994,\"y\":180,\"z\":0.080255500972271}},\"b5928a\":{\"lock\":false,\"pos\":{\"x\":-4.14500045776367,\"y\":1.58281064033508,\"z\":-15.1672019958496},\"rot\":{\"x\":359.919738769531,\"y\":270.001403808594,\"z\":0.0168358217924833}},\"d70162\":{\"lock\":false,\"pos\":{\"x\":-20.2600994110107,\"y\":1.61087548732758,\"z\":3.97650074958801},\"rot\":{\"x\":0.0445899441838264,\"y\":45.0010795593262,\"z\":359.931610107422}},\"d7558d\":{\"lock\":false,\"pos\":{\"x\":-30.2241992950439,\"y\":1.62021791934967,\"z\":-11.5100021362305},\"rot\":{\"x\":0.0168392490595579,\"y\":180.000030517578,\"z\":0.0799427479505539}},\"f704e9\":{\"lock\":false,\"pos\":{\"x\":-2.68841671943665,\"y\":1.59734857082367,\"z\":-5.04859685897827},\"rot\":{\"x\":0.0168358106166124,\"y\":180,\"z\":0.080255463719368}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "0b6166",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -30.22428,
|
|
"posY": 1.53360486,
|
|
"posZ": -7.6999917,
|
|
"rotX": -4.51307436E-08,
|
|
"rotY": 269.999725,
|
|
"rotZ": -6.86055E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Administration Building",
|
|
"Description": "Miskatonic.",
|
|
"GMNotes": "{\n \"id\": \"02053\",\n \"type\": \"Location\",\n \"traits\": \"Miskatonic.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"Plus|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Circle\",\n \"connections\": \"Plus|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": 233506,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2335": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "116eb9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1200581,
|
|
"posY": 1.53359032,
|
|
"posZ": 7.57001734,
|
|
"rotX": 0.000148626161,
|
|
"rotY": 270.0,
|
|
"rotZ": -0.000971420144,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Orne Library",
|
|
"Description": "Miskatonic.",
|
|
"GMNotes": "{\n \"id\": \"02050\",\n \"type\": \"Location\",\n \"traits\": \"Miskatonic.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Plus|Square\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Triangle\",\n \"connections\": \"Plus|Square\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 233503,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2335": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4541f6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -23.6765671,
|
|
"posY": 1.53360486,
|
|
"posZ": -0.0298899543,
|
|
"rotX": 3.02500922E-08,
|
|
"rotY": 269.998566,
|
|
"rotZ": -1.25568761E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Miskatonic Quad",
|
|
"Description": "Miskatonic.",
|
|
"GMNotes": "{\n \"id\": \"02048\",\n \"type\": \"Location\",\n \"traits\": \"Miskatonic.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Plus\",\n \"connections\": \"Triangle|Hourglass|Square|Diamond|Circle\"\n },\n \"locationBack\": {\n \"icons\": \"Plus\",\n \"connections\": \"Triangle|Hourglass|Square|Diamond|Circle\"\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": 233501,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2335": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "47b306",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -30.2244759,
|
|
"posY": 1.53360486,
|
|
"posZ": -15.2799969,
|
|
"rotX": 7.704389E-08,
|
|
"rotY": 269.999451,
|
|
"rotZ": -9.068906E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Faculty Offices",
|
|
"Description": "The Night is Still Young",
|
|
"GMNotes": "{\n \"id\": \"02054\",\n \"type\": \"Location\",\n \"traits\": \"Miskatonic.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tee\",\n \"connections\": \"Circle\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Tee\",\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": false,
|
|
"Hands": true,
|
|
"CardID": 233507,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2335": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4bd010",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -36.7731743,
|
|
"posY": 1.53360486,
|
|
"posZ": -0.0299834237,
|
|
"rotX": -1.62714819E-08,
|
|
"rotY": 269.999725,
|
|
"rotZ": 5.4879802E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dormitories",
|
|
"Description": "Miskatonic.",
|
|
"GMNotes": "{\n \"id\": \"02052\",\n \"type\": \"Location\",\n \"traits\": \"Miskatonic.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Diamond\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Diamond\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 233505,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2335": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "52e361",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.0137682,
|
|
"posY": 1.53360486,
|
|
"posZ": -9.995995,
|
|
"rotX": -1.22814257E-08,
|
|
"rotY": 270.000061,
|
|
"rotZ": -4.93199259E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "\"Jazz\" Mulligan",
|
|
"Description": "The Head Janitor",
|
|
"GMNotes": "{\n \"id\": \"02060\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 234103,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2341": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "556e96",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.927667,
|
|
"posY": 1.75798,
|
|
"posZ": 5.757158,
|
|
"rotX": -8.253219E-08,
|
|
"rotY": 270.000061,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
232812,
|
|
270219,
|
|
232813,
|
|
232818,
|
|
232817,
|
|
232829,
|
|
270327,
|
|
232814,
|
|
232829,
|
|
232817,
|
|
232818,
|
|
232810,
|
|
270430,
|
|
232811,
|
|
232810,
|
|
270431,
|
|
270431,
|
|
270219,
|
|
232828,
|
|
232828,
|
|
232813,
|
|
270327,
|
|
232810,
|
|
232813,
|
|
270430,
|
|
232812,
|
|
232811,
|
|
270219,
|
|
232817,
|
|
232827,
|
|
232811,
|
|
232827
|
|
],
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"2702": {
|
|
"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
|
|
},
|
|
"2703": {
|
|
"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
|
|
},
|
|
"2704": {
|
|
"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": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "6c2f4a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.12950444,
|
|
"posY": 1.70759833,
|
|
"posZ": 8.101044,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999878,
|
|
"rotZ": 0.0168764461,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Light of Aforgomon",
|
|
"Description": "\tPact. Power.",
|
|
"GMNotes": "{\n \"id\": \"02085\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Pact. Power.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232812,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6e7cb8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.7747707,
|
|
"posY": 1.753205,
|
|
"posZ": 5.66288233,
|
|
"rotX": 359.921753,
|
|
"rotY": 270.001221,
|
|
"rotZ": 0.0162846111,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ancient Evils",
|
|
"Description": "Omen.",
|
|
"GMNotes": "{\n \"id\": \"01166\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Omen.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 270219,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fbe20d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 2.15501428,
|
|
"posY": 1.69501209,
|
|
"posZ": 7.444842,
|
|
"rotX": 359.935822,
|
|
"rotY": 269.994781,
|
|
"rotZ": 7.50431871,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Thrall",
|
|
"Description": "Humanoid. Monster. Abomination.",
|
|
"GMNotes": "{\n \"id\": \"02086\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Monster. Abomination.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232813,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "60ef9e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.646352,
|
|
"posY": 1.548182,
|
|
"posZ": 0.144670352,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168772917,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eager for Death",
|
|
"Description": "Omen.",
|
|
"GMNotes": "{\n \"id\": \"02091\",\n \"type\": \"Treachery\",\n \"traits\": \"Omen.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232818,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "61c583",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.24814034,
|
|
"posY": 1.70613587,
|
|
"posZ": 4.471411,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0168776922,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Whippoorwill",
|
|
"Description": "Creature.",
|
|
"GMNotes": "{\n \"id\": \"02090\",\n \"type\": \"Enemy\",\n \"traits\": \"Creature.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232817,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2d6b0f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.163001,
|
|
"posY": 1.550591,
|
|
"posZ": 6.036887,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0168760177,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Arcane Barrier",
|
|
"Description": "\tHex. Obstacle.",
|
|
"GMNotes": "{\n \"id\": \"02102\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex. 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": 232829,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"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": -17.60739,
|
|
"posY": 1.58022821,
|
|
"posZ": 8.422101,
|
|
"rotX": 359.920349,
|
|
"rotY": 269.999756,
|
|
"rotZ": 0.0154577158,
|
|
"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": 270327,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e44036",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.394843,
|
|
"posY": 1.54970729,
|
|
"posZ": 4.13393164,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168757457,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Wizard of Yog-Sothoth",
|
|
"Description": "Humanoid. Sorcerer.",
|
|
"GMNotes": "{\n \"id\": \"02087\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Sorcerer.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232814,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "db1aee",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.36834574,
|
|
"posY": 1.70658445,
|
|
"posZ": 6.162498,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.01687594,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Arcane Barrier",
|
|
"Description": "\tHex. Obstacle.",
|
|
"GMNotes": "{\n \"id\": \"02102\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex. 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": 232829,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "de3bd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.24814034,
|
|
"posY": 1.72339261,
|
|
"posZ": 4.471411,
|
|
"rotX": 359.920441,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0163779482,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Whippoorwill",
|
|
"Description": "Creature.",
|
|
"GMNotes": "{\n \"id\": \"02090\",\n \"type\": \"Enemy\",\n \"traits\": \"Creature.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232817,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "40e9d0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.37573743,
|
|
"posY": 1.7043395,
|
|
"posZ": 0.209344044,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168772619,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Eager for Death",
|
|
"Description": "Omen.",
|
|
"GMNotes": "{\n \"id\": \"02091\",\n \"type\": \"Treachery\",\n \"traits\": \"Omen.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232818,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "42d459",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.15239716,
|
|
"posY": 1.70869577,
|
|
"posZ": 11.50471,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.01687689,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Visions of Futures Past",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"02083\",\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": 232810,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"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": -20.7980976,
|
|
"posY": 1.58471787,
|
|
"posZ": 8.655001,
|
|
"rotX": 359.9206,
|
|
"rotY": 270.001221,
|
|
"rotZ": 0.0136531973,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Yithian Observer",
|
|
"Description": "Monster. Yithian.",
|
|
"GMNotes": "{\n \"id\": \"01177\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Yithian.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 270430,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9cb0b3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.89250565,
|
|
"posY": 1.70636082,
|
|
"posZ": 8.19774,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.01687832,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Beyond the Veil",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"02084\",\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": 232811,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "de3bd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.15239716,
|
|
"posY": 1.72595167,
|
|
"posZ": 11.50471,
|
|
"rotX": 359.9199,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0165576525,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Visions of Futures Past",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"02083\",\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": 232810,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ad01d5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.624012,
|
|
"posY": 1.58353865,
|
|
"posZ": 5.391288,
|
|
"rotX": 359.92038,
|
|
"rotY": 270.0011,
|
|
"rotZ": 0.0152683891,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Offer of Power",
|
|
"Description": "Pact.",
|
|
"GMNotes": "{\n \"id\": \"01178\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Pact.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 270431,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1e4b6f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -21.1143684,
|
|
"posY": 1.74799216,
|
|
"posZ": 5.51088,
|
|
"rotX": 359.927856,
|
|
"rotY": 270.00116,
|
|
"rotZ": 0.008664682,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Offer of Power",
|
|
"Description": "Pact.",
|
|
"GMNotes": "{\n \"id\": \"01178\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Pact.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 270431,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6e7cb8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.6701107,
|
|
"posY": 1.57669926,
|
|
"posZ": 5.718232,
|
|
"rotX": 359.920654,
|
|
"rotY": 270.001251,
|
|
"rotZ": 0.0133364461,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ancient Evils",
|
|
"Description": "Omen.",
|
|
"GMNotes": "{\n \"id\": \"01166\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Omen.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 270219,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "851dc1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.0437057,
|
|
"posY": 1.55163479,
|
|
"posZ": 9.017338,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168782789,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Terror from Beyond",
|
|
"Description": "\tHex. Terror.",
|
|
"GMNotes": "{\n \"id\": \"02101\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex. Terror.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232828,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8906a9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 2.82296681,
|
|
"posY": 1.708395,
|
|
"posZ": 9.019801,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168783069,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Terror from Beyond",
|
|
"Description": "\tHex. Terror.",
|
|
"GMNotes": "{\n \"id\": \"02101\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex. Terror.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232828,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "76139c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 2.76801586,
|
|
"posY": 1.60063446,
|
|
"posZ": 8.933262,
|
|
"rotX": 359.9319,
|
|
"rotY": 269.992828,
|
|
"rotZ": 0.0655015,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Thrall",
|
|
"Description": "Humanoid. Monster. Abomination.",
|
|
"GMNotes": "{\n \"id\": \"02086\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Monster. Abomination.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232813,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"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": -18.06458,
|
|
"posY": 1.74395728,
|
|
"posZ": 8.675678,
|
|
"rotX": 359.928467,
|
|
"rotY": 269.9997,
|
|
"rotZ": 0.006147271,
|
|
"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": 270327,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "de3bd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.43124938,
|
|
"posY": 1.55177522,
|
|
"posZ": 11.3293571,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0168769564,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Visions of Futures Past",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"02083\",\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": 232810,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9b9792",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.32377672,
|
|
"posY": 1.55104816,
|
|
"posZ": 8.903832,
|
|
"rotX": 359.921722,
|
|
"rotY": 269.997437,
|
|
"rotZ": 0.008892595,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Thrall",
|
|
"Description": "Humanoid. Monster. Abomination.",
|
|
"GMNotes": "{\n \"id\": \"02086\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Monster. Abomination.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232813,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4c04b5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -21.04713,
|
|
"posY": 1.74898231,
|
|
"posZ": 8.319516,
|
|
"rotX": 359.925964,
|
|
"rotY": 270.001221,
|
|
"rotZ": 0.0171930045,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Yithian Observer",
|
|
"Description": "Monster. Yithian.",
|
|
"GMNotes": "{\n \"id\": \"01177\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Yithian.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 270430,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "de3bd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.103076,
|
|
"posY": 1.5511409,
|
|
"posZ": 7.621261,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999878,
|
|
"rotZ": 0.0168763418,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Light of Aforgomon",
|
|
"Description": "\tPact. Power.",
|
|
"GMNotes": "{\n \"id\": \"02085\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Pact. Power.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232812,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d56ff7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.89250565,
|
|
"posY": 1.72360778,
|
|
"posZ": 8.19774,
|
|
"rotX": 359.920837,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.0158282,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Beyond the Veil",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"02084\",\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": 232811,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8af879",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.808506,
|
|
"posY": 1.73237514,
|
|
"posZ": 5.64793253,
|
|
"rotX": 359.9293,
|
|
"rotY": 270.001251,
|
|
"rotZ": 0.01372296,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ancient Evils",
|
|
"Description": "Omen.",
|
|
"GMNotes": "{\n \"id\": \"01166\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Omen.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 270219,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2317": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "de3bd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.19784832,
|
|
"posY": 1.54999852,
|
|
"posZ": 4.190304,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0168776866,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Whippoorwill",
|
|
"Description": "Creature.",
|
|
"GMNotes": "{\n \"id\": \"02090\",\n \"type\": \"Enemy\",\n \"traits\": \"Creature.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232817,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "de3bd5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 2.622002,
|
|
"posY": 1.55319154,
|
|
"posZ": 12.3073425,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0168778151,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pushed into the Beyond",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"02100\",\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": 232827,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d56ff7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 3.917338,
|
|
"posY": 1.55012894,
|
|
"posZ": 8.039298,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999969,
|
|
"rotZ": 0.01687837,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Beyond the Veil",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"02084\",\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": 232811,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d91086",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 2.70456314,
|
|
"posY": 1.70989764,
|
|
"posZ": 12.504797,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0168777462,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Pushed into the Beyond",
|
|
"Description": "Hex.",
|
|
"GMNotes": "{\n \"id\": \"02100\",\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": 232827,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2328": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "64a96b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.1201725,
|
|
"posY": 1.53360486,
|
|
"posZ": -7.699991,
|
|
"rotX": -7.667298E-08,
|
|
"rotY": 269.999817,
|
|
"rotZ": 1.0143269E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Science Building",
|
|
"Description": "Miskatonic.",
|
|
"GMNotes": "{\n \"id\": \"02056\",\n \"type\": \"Location\",\n \"traits\": \"Miskatonic.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Plus|Tilde\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Plus|Tilde\",\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": 233509,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2335": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "70df0b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -30.2243633,
|
|
"posY": 1.53360486,
|
|
"posZ": 7.57001543,
|
|
"rotX": -3.50613163E-07,
|
|
"rotY": 269.999725,
|
|
"rotZ": 6.93353456E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Humanities Building",
|
|
"Description": "Miskatonic.",
|
|
"GMNotes": "{\n \"id\": \"02049\",\n \"type\": \"Location\",\n \"traits\": \"Miskatonic.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Square\",\n \"connections\": \"Plus|Triangle\"\n },\n \"locationBack\": {\n \"icons\": \"Square\",\n \"connections\": \"Plus|Triangle\",\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": 233502,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2335": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7f6452",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -14.7655954,
|
|
"posY": 1.54749084,
|
|
"posZ": 5.02372551,
|
|
"rotX": 359.480347,
|
|
"rotY": 0.05407952,
|
|
"rotZ": -6.464346E-05,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Namer of the Dead",
|
|
"Description": "Presence Within the Grimoire",
|
|
"GMNotes": "{\n \"id\": \"90007\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Geist. 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": 231800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2318": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736532717/8A5447C52CCA46977B87E3363E5FC47839C11727/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7f7fb0",
|
|
"Name": "Custom_PDF",
|
|
"Transform": {
|
|
"posX": -1.46529007,
|
|
"posY": 1.4814992,
|
|
"posZ": -26.9304066,
|
|
"rotX": 6.50931042E-08,
|
|
"rotY": 269.998657,
|
|
"rotZ": 5.227659E-07,
|
|
"scaleX": 2.48152614,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.48152614
|
|
},
|
|
"Nickname": "Read or Die 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/1017195287736584494/A0E90E3760E7B1FE910D322CC85EAD25E6185E02/",
|
|
"PDFPassword": "",
|
|
"PDFPage": 0,
|
|
"PDFPageOffset": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9229a8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.8162353,
|
|
"posY": 1.59660506,
|
|
"posZ": 15.2543488,
|
|
"rotX": -2.82726461E-07,
|
|
"rotY": 270.0257,
|
|
"rotZ": 3.40132573E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dr. Henry Armitage",
|
|
"Description": "The Head Librarian",
|
|
"GMNotes": "{\n \"id\": \"02040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 270513,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2705": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 6,
|
|
"NumHeight": 5,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a2fcc1",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -3.95603752,
|
|
"posY": 1.59660506,
|
|
"posZ": -10.4411955,
|
|
"rotX": -4.326225E-07,
|
|
"rotY": 269.999634,
|
|
"rotZ": 4.45443362E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "Read or Die",
|
|
"GMNotes": "{\"type\":\"ScenarioReference\",\"class\":\"Mythos\",\"tokens\":{\"back\":{\"Cultist\":{\"description\":\"Reveal another token. If you fail, discard the top 3 cards of your deck.\",\"modifier\":0},\"Elder Thing\":{\"description\":\"-5. If you fail, Daisy Walker takes 1 horror.\",\"modifier\":-5},\"Skull\":{\"description\":\"-X. X is 1 more than the number of Tome assets Daisy Walker controls.\",\"modifier\":-999},\"Tablet\":{\"description\":\"-3. If this is an attack or evansion attempt against Namer of the Dead and you do not succeed by at least 3, it attacks you.\",\"modifier\":-3}},\"front\":{\"Cultist\":{\"description\":\"Reveal another token. If you fail, discard the top 2 cards of your deck.\",\"modifier\":0},\"Elder Thing\":{\"description\":\"-3. If you fail, Daisy Walker takes 1 horror.\",\"modifier\":-3},\"Skull\":{\"description\":\"-X. X is the number of Tome assets Daisy Walker controls.\",\"modifier\":-999},\"Tablet\":{\"description\":\"-2. If this is an attack or evansion attempt against Namer of the Dead and you do not succeed by at least 2, it attacks you.\",\"modifier\":-2}}},\"id\":\"90004\"}",
|
|
"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": 232100,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2321": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736551619/926F857CA442C9CAFDE6392C4FB1FC1AB1DFD040/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736551840/6C8534FFFAC128BBD6CD9F370B95E10A8E58B168/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b00f35",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -30.22428,
|
|
"posY": 1.53360486,
|
|
"posZ": -0.0299854428,
|
|
"rotX": -7.29663E-08,
|
|
"rotY": 270.000061,
|
|
"rotZ": 2.27219061E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Student Union",
|
|
"Description": "Miskatonic.",
|
|
"GMNotes": "{\n \"id\": \"02051\",\n \"type\": \"Location\",\n \"traits\": \"Miskatonic.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond\",\n \"connections\": \"Plus|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Diamond\",\n \"connections\": \"Plus|SlantedEquals\",\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 233504,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2335": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b58f4c",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -2.724739,
|
|
"posY": 1.59660506,
|
|
"posZ": 0.373308569,
|
|
"rotX": -5.11344176E-08,
|
|
"rotY": 180.0,
|
|
"rotZ": 5.75009E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mortal Inquiry",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "{\n \"id\": \"90005\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 12,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232300,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2323": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736557920/CA08909CA827A9E0F8779E89B38318358A81D421/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736554645/CFB1E2B66071026F84FF4F93FEB4B7A228ACD7F0/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b5928a",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -4.14524651,
|
|
"posY": 1.63785911,
|
|
"posZ": -15.1669369,
|
|
"rotX": 358.5712,
|
|
"rotY": 269.99408,
|
|
"rotZ": 4.37695053E-06,
|
|
"scaleX": 2.2,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.2
|
|
},
|
|
"Nickname": "Read or Die",
|
|
"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 = 'Read or Die'\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": "f704e9",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": -2.688437,
|
|
"posY": 1.59660506,
|
|
"posZ": -5.048594,
|
|
"rotX": -1.1376904E-07,
|
|
"rotY": 180.000015,
|
|
"rotZ": 1.06550594E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Speed Reading",
|
|
"Description": "Act 1",
|
|
"GMNotes": "{\n \"id\": \"90006\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 232400,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2324": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736560700/8FC34EE0BB5F409D6FE2D1B0C8376BDBB76E52AF/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1017195287736560872/9F8CC6A9AC2CAFA75FF0C2F8A6D3E1E9384CFF21/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
],
|
|
"AttachedDecals": [
|
|
{
|
|
"Transform": {
|
|
"posX": -0.0021877822,
|
|
"posY": -0.08963572,
|
|
"posZ": -0.00288731651,
|
|
"rotX": 270.0,
|
|
"rotY": 359.869568,
|
|
"rotZ": 0.0,
|
|
"scaleX": 2.00000215,
|
|
"scaleY": 2.00000238,
|
|
"scaleZ": 2.00000262
|
|
},
|
|
"CustomDecal": {
|
|
"Name": "dunwich_back",
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
|
|
"Size": 7.4
|
|
}
|
|
}
|
|
]
|
|
} |