4618 lines
163 KiB
JSON
4618 lines
163 KiB
JSON
{
|
|
"GUID": "db7039",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 12.25,
|
|
"posY": 1.48149908,
|
|
"posZ": 27.986,
|
|
"rotX": 1.73949122E-08,
|
|
"rotY": 270.0001,
|
|
"rotZ": -2.97514845E-07,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Curse of the Rougarou",
|
|
"Description": "Investigators must spend 1XP each to play this side-mission",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/826883954590159139/DD8593B1F0B0D531AF8F3A9B6A37568E551B9B03/",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 3,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
|
|
"LuaScriptState": "{\"ml\":{\"134d83\":{\"lock\":false,\"pos\":{\"x\":-3.9277036190033,\"y\":1.69623827934265,\"z\":5.75710153579712},\"rot\":{\"x\":359.919738769531,\"y\":269.987701416016,\"z\":180.016845703125}},\"425f86\":{\"lock\":false,\"pos\":{\"x\":-1.46565771102905,\"y\":1.47562313079834,\"z\":-26.9294033050537},\"rot\":{\"x\":359.920135498047,\"y\":270.007720947266,\"z\":0.0168614573776722}},\"44573a\":{\"lock\":false,\"pos\":{\"x\":-4.63759899139404,\"y\":1.40698504447937,\"z\":13.822603225708},\"rot\":{\"x\":359.983154296875,\"y\":-0.000882750551681966,\"z\":359.919677734375}},\"73e53d\":{\"lock\":false,\"pos\":{\"x\":-11.327299118042,\"y\":1.41429996490479,\"z\":7.08839988708496},\"rot\":{\"x\":359.983154296875,\"y\":4.73912332381587E-05,\"z\":359.920043945313}},\"917668\":{\"lock\":false,\"pos\":{\"x\":-2.72460699081421,\"y\":1.62076032161713,\"z\":0.373301774263382},\"rot\":{\"x\":0.0167892463505268,\"y\":180.033096313477,\"z\":0.0802659317851067}},\"9d0d56\":{\"lock\":false,\"pos\":{\"x\":-3.9560170173645,\"y\":1.59753954410553,\"z\":-10.4411993026733},\"rot\":{\"x\":359.919738769531,\"y\":269.985260009766,\"z\":0.0168587360531092}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"cf0c00\":{\"lock\":false,\"pos\":{\"x\":-3.73250079154968,\"y\":1.58228385448456,\"z\":-14.994101524353},\"rot\":{\"x\":359.919738769531,\"y\":270.002075195313,\"z\":0.0168349482119083}},\"d47bca\":{\"lock\":false,\"pos\":{\"x\":-2.6884241104126,\"y\":1.61430239677429,\"z\":-5.0485954284668},\"rot\":{\"x\":0.0167896263301373,\"y\":180.032699584961,\"z\":0.0802661553025246}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "921551",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 12.2521725,
|
|
"posY": 1.98080146,
|
|
"posZ": 11.9863415,
|
|
"rotX": 359.931854,
|
|
"rotY": 269.999634,
|
|
"rotZ": 0.0143994577,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
60503,
|
|
60502,
|
|
60501,
|
|
60500
|
|
],
|
|
"CustomDeck": {
|
|
"605": {
|
|
"FaceURL": "http://i.imgur.com/OQsx2AJ.jpg",
|
|
"BackURL": "http://i.imgur.com/UUBjsxW.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "df9762",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -9.651079,
|
|
"posY": 1.66632116,
|
|
"posZ": -0.683199167,
|
|
"rotX": 359.916,
|
|
"rotY": 270.000519,
|
|
"rotZ": 0.0268353838,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 60503,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"605": {
|
|
"FaceURL": "http://i.imgur.com/OQsx2AJ.jpg",
|
|
"BackURL": "http://i.imgur.com/UUBjsxW.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2c9b49",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -9.183704,
|
|
"posY": 1.82574415,
|
|
"posZ": -3.838852,
|
|
"rotX": 359.211365,
|
|
"rotY": 269.985,
|
|
"rotZ": 181.298523,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 60502,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"605": {
|
|
"FaceURL": "http://i.imgur.com/OQsx2AJ.jpg",
|
|
"BackURL": "http://i.imgur.com/UUBjsxW.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "de3a2d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -10.7518864,
|
|
"posY": 1.83166075,
|
|
"posZ": -24.485857,
|
|
"rotX": 359.9491,
|
|
"rotY": 270.00592,
|
|
"rotZ": 183.673767,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 60501,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"605": {
|
|
"FaceURL": "http://i.imgur.com/OQsx2AJ.jpg",
|
|
"BackURL": "http://i.imgur.com/UUBjsxW.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dccafc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -10.680131,
|
|
"posY": 1.6491406,
|
|
"posZ": -24.8134022,
|
|
"rotX": 359.934326,
|
|
"rotY": 269.999023,
|
|
"rotZ": 184.477432,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "null",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 60500,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"605": {
|
|
"FaceURL": "http://i.imgur.com/OQsx2AJ.jpg",
|
|
"BackURL": "http://i.imgur.com/UUBjsxW.jpg",
|
|
"NumWidth": 10,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "134d83",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.92786551,
|
|
"posY": 1.69058359,
|
|
"posZ": 5.757144,
|
|
"rotX": -6.113302E-08,
|
|
"rotY": 269.9878,
|
|
"rotZ": 180.0,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "Curse of the Rougarou",
|
|
"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": [
|
|
3710,
|
|
3710,
|
|
3710,
|
|
3702,
|
|
3702,
|
|
3702,
|
|
3711,
|
|
3711,
|
|
3711,
|
|
3704,
|
|
3704,
|
|
3704,
|
|
3704,
|
|
3708,
|
|
3708,
|
|
3708,
|
|
3701,
|
|
3701
|
|
],
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "fcd44f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -20.4167252,
|
|
"posY": 1.23160374,
|
|
"posZ": 10.3240051,
|
|
"rotX": -0.005275788,
|
|
"rotY": 269.6343,
|
|
"rotZ": -0.00159484206,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spectral Mist",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"81025\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3710,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f1b747",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -21.2866554,
|
|
"posY": 1.28116059,
|
|
"posZ": 10.1715851,
|
|
"rotX": 0.00414084364,
|
|
"rotY": 269.635284,
|
|
"rotZ": 0.009243122,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spectral Mist",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"81025\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3710,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b3b19e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -21.4046154,
|
|
"posY": 1.74608767,
|
|
"posZ": 10.0697241,
|
|
"rotX": -0.00452423561,
|
|
"rotY": 269.6341,
|
|
"rotZ": 0.00116711017,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Spectral Mist",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"81025\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3710,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a7fddb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -22.0698471,
|
|
"posY": 1.231927,
|
|
"posZ": 8.92402,
|
|
"rotX": 0.008784935,
|
|
"rotY": 270.018,
|
|
"rotZ": 0.001633369,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cursed Swamp",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"81024\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3702,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "005e92",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -21.9686,
|
|
"posY": 1.28124547,
|
|
"posZ": 7.931979,
|
|
"rotX": 0.00739351241,
|
|
"rotY": 270.017975,
|
|
"rotZ": 0.034007702,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cursed Swamp",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"81024\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3702,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a3621c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -22.0263977,
|
|
"posY": 1.342563,
|
|
"posZ": 6.861161,
|
|
"rotX": 0.006094553,
|
|
"rotY": 270.0258,
|
|
"rotZ": 0.06655821,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cursed Swamp",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"81024\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3702,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b9dfc0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.8700542,
|
|
"posY": 1.231666,
|
|
"posZ": 3.81456161,
|
|
"rotX": -0.00252019428,
|
|
"rotY": 269.923462,
|
|
"rotZ": -0.000927611138,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Swamp Leech",
|
|
"Description": "Creature.",
|
|
"GMNotes": "{\n \"id\": \"81023\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\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,
|
|
"CardID": 3711,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "9d5122",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.1904678,
|
|
"posY": 1.37718892,
|
|
"posZ": 4.006807,
|
|
"rotX": 0.0018006257,
|
|
"rotY": 269.9235,
|
|
"rotZ": -0.00523625175,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Swamp Leech",
|
|
"Description": "Creature.",
|
|
"GMNotes": "{\n \"id\": \"81023\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\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,
|
|
"CardID": 3711,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b9dfc0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.1904716,
|
|
"posY": 1.39464581,
|
|
"posZ": 4.006798,
|
|
"rotX": 0.00032751885,
|
|
"rotY": 269.9235,
|
|
"rotZ": -0.0008587106,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Swamp Leech",
|
|
"Description": "Creature.",
|
|
"GMNotes": "{\n \"id\": \"81023\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\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,
|
|
"CardID": 3711,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "59477d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.4438171,
|
|
"posY": 1.32935143,
|
|
"posZ": 2.35180068,
|
|
"rotX": 359.983032,
|
|
"rotY": 270.0263,
|
|
"rotZ": 354.818146,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dragged Under",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"81026\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3704,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "225198",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.0083637,
|
|
"posY": 1.2316401,
|
|
"posZ": 0.7336604,
|
|
"rotX": -0.00346833747,
|
|
"rotY": 270.2193,
|
|
"rotZ": 0.000242476832,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dragged Under",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"81026\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3704,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5c297d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.98393,
|
|
"posY": 1.34064281,
|
|
"posZ": -0.210578531,
|
|
"rotX": -0.00380434864,
|
|
"rotY": 270.207855,
|
|
"rotZ": 0.0200002957,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dragged Under",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"81026\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3704,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "78cad4",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.4687176,
|
|
"posY": 1.3882364,
|
|
"posZ": 3.188104,
|
|
"rotX": 0.00441529043,
|
|
"rotY": 270.097565,
|
|
"rotZ": 358.771637,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dragged Under",
|
|
"Description": "Hazard.",
|
|
"GMNotes": "{\n \"id\": \"81026\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3704,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bddadf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.3616886,
|
|
"posY": 1.23178542,
|
|
"posZ": -1.6808697,
|
|
"rotX": 0.001712108,
|
|
"rotY": 269.9996,
|
|
"rotZ": 359.99295,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ripples on the Surface",
|
|
"Description": "Terror.",
|
|
"GMNotes": "{\n \"id\": \"81027\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3708,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "290595",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.2207775,
|
|
"posY": 1.27196217,
|
|
"posZ": -2.74603271,
|
|
"rotX": 359.84256,
|
|
"rotY": 270.0082,
|
|
"rotZ": 0.460585535,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ripples of the Surface",
|
|
"Description": "Terror.",
|
|
"GMNotes": "{\n \"id\": \"81027\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3708,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "79bc73",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.2433758,
|
|
"posY": 1.41694939,
|
|
"posZ": -3.2452817,
|
|
"rotX": 359.909058,
|
|
"rotY": 270.004364,
|
|
"rotZ": 0.480743617,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Ripples of the Surface",
|
|
"Description": "Terror.",
|
|
"GMNotes": "{\n \"id\": \"81027\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 3708,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "eba049",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.9308128,
|
|
"posY": 1.37932611,
|
|
"posZ": 7.40904331,
|
|
"rotX": 359.982758,
|
|
"rotY": 270.0358,
|
|
"rotZ": 179.987869,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bog Gator",
|
|
"Description": "Creature.",
|
|
"GMNotes": "{\n \"id\": \"81022\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\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,
|
|
"CardID": 3701,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "fd576f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.5939388,
|
|
"posY": 1.2344662,
|
|
"posZ": 7.003368,
|
|
"rotX": -0.004411935,
|
|
"rotY": 269.993164,
|
|
"rotZ": 180.00737,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bog Gator",
|
|
"Description": "Creature.",
|
|
"GMNotes": "{\n \"id\": \"81022\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\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,
|
|
"CardID": 3701,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "425f86",
|
|
"Name": "Custom_PDF",
|
|
"Transform": {
|
|
"posX": -1.46567047,
|
|
"posY": 1.48149908,
|
|
"posZ": -26.9293976,
|
|
"rotX": -8.014204E-07,
|
|
"rotY": 270.0079,
|
|
"rotZ": 1.29519526E-06,
|
|
"scaleX": 2.991886,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.991886
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomPDF": {
|
|
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1687120954015129437/B432C59BBCE6DC79E24EC312B9706578DBDF0249/",
|
|
"PDFPassword": "",
|
|
"PDFPage": 0,
|
|
"PDFPageOffset": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "44573a",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": -4.63734,
|
|
"posY": 1.39796591,
|
|
"posZ": 13.8225546,
|
|
"rotX": -1.03394527E-07,
|
|
"rotY": -0.0009347553,
|
|
"rotZ": -9.671645E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Curse of the Rougarou",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.763066232,
|
|
"g": 0.73780787,
|
|
"b": 0.73780787
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "aaec7e",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 16.789608,
|
|
"posY": 3.56540322,
|
|
"posZ": -0.05973324,
|
|
"rotX": 2.936378,
|
|
"rotY": 269.970642,
|
|
"rotZ": 359.2982,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "Curse of the Rougarou",
|
|
"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": [
|
|
7405,
|
|
7405,
|
|
7405,
|
|
7400,
|
|
7400,
|
|
7407,
|
|
7407,
|
|
7407,
|
|
7407,
|
|
7407,
|
|
7403,
|
|
7406,
|
|
7406,
|
|
7409,
|
|
7409
|
|
],
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "2281d8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.3495255,
|
|
"posY": 1.23167646,
|
|
"posZ": 3.69282937,
|
|
"rotX": -0.00126174965,
|
|
"rotY": 269.970154,
|
|
"rotZ": -0.000311318232,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Insatiable Bloodlust",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81036\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7405,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2b1301",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.286581,
|
|
"posY": 1.36379623,
|
|
"posZ": 2.49723,
|
|
"rotX": -0.0003314776,
|
|
"rotY": 269.9861,
|
|
"rotZ": 7.052924,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Insatiable Bloodlust",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81036\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7405,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "20972b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.339,
|
|
"posY": 1.36405122,
|
|
"posZ": 1.30999136,
|
|
"rotX": 0.0122241182,
|
|
"rotY": 269.8629,
|
|
"rotZ": 7.05571175,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Insatiable Bloodlust",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81036\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7405,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "67af79",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.30258,
|
|
"posY": 1.23169959,
|
|
"posZ": 3.29118037,
|
|
"rotX": -0.0008314501,
|
|
"rotY": 270.028839,
|
|
"rotZ": -0.000969281653,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Beast of the Bayou",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81035\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "00ae1b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.0411644,
|
|
"posY": 1.348672,
|
|
"posZ": 1.94158089,
|
|
"rotX": -0.00257989066,
|
|
"rotY": 270.034973,
|
|
"rotZ": 6.24002361,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Beast of the Bayou",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81035\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "49a9d3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 36.0386658,
|
|
"posY": 6.531484,
|
|
"posZ": -21.4949169,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.000122,
|
|
"rotZ": 0.016873097,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "On the Prowl",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81034\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 7407,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "528887",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 36.48839,
|
|
"posY": 7.14805031,
|
|
"posZ": -21.4128685,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.999878,
|
|
"rotZ": 0.0168647487,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "On the Prowl",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81034\",\n \"type\": \"Treachery\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 7407,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7fe6c7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.6998348,
|
|
"posY": 1.3372066,
|
|
"posZ": 0.39019835,
|
|
"rotX": 0.0416601077,
|
|
"rotY": 270.005371,
|
|
"rotZ": 0.187582508,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "On the Prowl",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81034\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7407,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e37396",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.5877533,
|
|
"posY": 1.2808677,
|
|
"posZ": 1.38878667,
|
|
"rotX": 0.0279756058,
|
|
"rotY": 269.999481,
|
|
"rotZ": 0.08262127,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "On the Prowl",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81034\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7407,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "81741e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.4427681,
|
|
"posY": 1.23220837,
|
|
"posZ": 2.08432961,
|
|
"rotX": 0.0204180088,
|
|
"rotY": 269.999146,
|
|
"rotZ": 0.00345057971,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "On the Prowl",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81034\",\n \"type\": \"Treachery\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7407,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "db62d1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.7187767,
|
|
"posY": 1.40583134,
|
|
"posZ": 6.81874371,
|
|
"rotX": -0.000200636816,
|
|
"rotY": 270.001526,
|
|
"rotZ": 181.50499,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dark Young Host",
|
|
"Description": "Monster. Dark Young.",
|
|
"GMNotes": "{\n \"id\": \"81033\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Dark Young.\",\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,
|
|
"CardID": 7403,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "551a7b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.2555065,
|
|
"posY": 1.23168707,
|
|
"posZ": 4.18863058,
|
|
"rotX": -0.00146826368,
|
|
"rotY": 270.0,
|
|
"rotZ": -0.000546841533,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Marsh Gug",
|
|
"Description": "Monster. Gug.",
|
|
"GMNotes": "{\n \"id\": \"81032\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Gug.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7406,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "891bde",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -19.2499828,
|
|
"posY": 1.37723887,
|
|
"posZ": 3.93390059,
|
|
"rotX": -0.00342945987,
|
|
"rotY": 270.000031,
|
|
"rotZ": -0.00243303971,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Marsh Gug",
|
|
"Description": "Monster. Gug.",
|
|
"GMNotes": "{\n \"id\": \"81032\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Gug.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7406,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4b796e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.8490238,
|
|
"posY": 1.23159361,
|
|
"posZ": 3.97474,
|
|
"rotX": -0.004219712,
|
|
"rotY": 269.960663,
|
|
"rotZ": 0.02648453,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Slime-Covered Dhole",
|
|
"Description": "Monster. Dhole.",
|
|
"GMNotes": "{\n \"id\": \"81031\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Dhole.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7409,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "259a79",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -18.7115135,
|
|
"posY": 1.37917972,
|
|
"posZ": 4.061019,
|
|
"rotX": -0.00415054057,
|
|
"rotY": 269.904938,
|
|
"rotZ": 0.114914186,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Slime-Covered Dhole",
|
|
"Description": "Monster. Dhole.",
|
|
"GMNotes": "{\n \"id\": \"81031\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Dhole.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 7409,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "68befe",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 11.7179,
|
|
"posY": 3.81303954,
|
|
"posZ": 3.26954174,
|
|
"rotX": 0.0208052173,
|
|
"rotY": 270.0097,
|
|
"rotZ": 0.0167753715,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Monstrous Transformation",
|
|
"Description": "",
|
|
"GMNotes": "{\n \"id\": \"81030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"traits\": \"Talent.\",\n \"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": 296804,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2968": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "569b06",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 48.98335,
|
|
"posY": 2.31163645,
|
|
"posZ": -33.2483253,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.00324349268,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Curse of the Rougarou",
|
|
"Description": "Curse.",
|
|
"GMNotes": "{\n \"id\": \"81029\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 8901,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"89": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e86419",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.6702576,
|
|
"posY": 3.30215549,
|
|
"posZ": 16.49185,
|
|
"rotX": 359.8969,
|
|
"rotY": 270.010529,
|
|
"rotZ": 359.7615,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Rougarou",
|
|
"Description": "Monster. Creature. Elite.",
|
|
"GMNotes": "{\n \"id\": \"81028\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Creature. 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,
|
|
"CardID": 7312,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"73": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "73e53d",
|
|
"Name": "Bag",
|
|
"Transform": {
|
|
"posX": -11.3269625,
|
|
"posY": 1.334966,
|
|
"posZ": 7.0884366,
|
|
"rotX": -4.70240849E-07,
|
|
"rotY": 0.00160615484,
|
|
"rotZ": -1.15065916E-07,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Locations",
|
|
"Description": "Curse of the Rougarou",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.80460757,
|
|
"g": 0.446695328,
|
|
"b": 0.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function onCollisionEnter(collision_info)\r\n self.shuffle() \r\n self.shuffle() \r\n self.shuffle() \r\nend\r\n",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "a287d0",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 21.59923,
|
|
"posY": 3.48956871,
|
|
"posZ": -9.682919,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9915,
|
|
"rotZ": 0.0168809518,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Wilderness",
|
|
"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": [
|
|
5407,
|
|
5409,
|
|
5408
|
|
],
|
|
"CustomDeck": {
|
|
"54": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "2b7d4c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.2204914,
|
|
"posY": 1.52763963,
|
|
"posZ": -13.6435575,
|
|
"rotX": 359.9027,
|
|
"rotY": 269.999054,
|
|
"rotZ": 0.0111290533,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Forgotten Marsh",
|
|
"Description": "Wilderness. Bayou.",
|
|
"GMNotes": "{\n \"id\": \"81013\",\n \"type\": \"Location\",\n \"traits\": \"Wilderness. Bayou.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond\",\n \"connections\": \"Crescent|Square|Triangle|Hourglass\"\n },\n \"locationBack\": {\n \"icons\": \"Diamond\",\n \"connections\": \"Crescent|Square|Triangle|Hourglass\"\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": 5407,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"54": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "03b080",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.490099,
|
|
"posY": 1.52940607,
|
|
"posZ": -10.6425247,
|
|
"rotX": 359.897156,
|
|
"rotY": 269.999878,
|
|
"rotZ": 0.008586009,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Wilderness",
|
|
"Description": "Wilderness.",
|
|
"GMNotes": "{\n \"id\": \"81015\",\n \"type\": \"Location\",\n \"traits\": \"Wilderness.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Diamond|Crescent\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Crescent\",\n \"connections\": \"Diamond|Crescent\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 5409,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"54": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3c5ea8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.6145668,
|
|
"posY": 1.52895176,
|
|
"posZ": -13.23367,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0168667343,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Wilderness",
|
|
"Description": "Wilderness.",
|
|
"GMNotes": "{\n \"id\": \"81014\",\n \"type\": \"Location\",\n \"traits\": \"Wilderness.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Diamond|Crescent\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Diamond|Crescent\"\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 5408,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"54": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "3c3a20",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 22.867794,
|
|
"posY": 3.49186373,
|
|
"posZ": 4.111368,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.0145,
|
|
"rotZ": 0.0168611277,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unhallowed Land",
|
|
"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": [
|
|
5310,
|
|
5311,
|
|
5312
|
|
],
|
|
"CustomDeck": {
|
|
"53": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "26b322",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 16.9863338,
|
|
"posY": 1.52924085,
|
|
"posZ": 0.3128235,
|
|
"rotX": 359.900543,
|
|
"rotY": 270.00058,
|
|
"rotZ": 0.009245392,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Foul Swamp",
|
|
"Description": "Unhallowed. Bayou.",
|
|
"GMNotes": "{\n \"id\": \"81016\",\n \"type\": \"Location\",\n \"traits\": \"Unhallowed. Bayou.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"SlantedEquals|Square|Triangle|Diamond\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"SlantedEquals|Square|Triangle|Diamond\"\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 5310,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"53": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "15983c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 17.4477234,
|
|
"posY": 1.52782166,
|
|
"posZ": -3.612536,
|
|
"rotX": 359.919128,
|
|
"rotY": 269.9997,
|
|
"rotZ": 0.0163991917,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unhallowed Land",
|
|
"Description": "Unhallowed.",
|
|
"GMNotes": "{\n \"id\": \"81017\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Curse.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 5311,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"53": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "552a1d",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 17.3968449,
|
|
"posY": 1.66862917,
|
|
"posZ": -3.48732448,
|
|
"rotX": 359.911865,
|
|
"rotY": 269.9994,
|
|
"rotZ": 0.00553908246,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Unhallowed Land",
|
|
"Description": "Unhallowed.",
|
|
"GMNotes": "{\n \"id\": \"81018\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Curse.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 5312,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"53": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "ab7286",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 26.0014172,
|
|
"posY": 3.5499332,
|
|
"posZ": -8.145509,
|
|
"rotX": 1.458102,
|
|
"rotY": 270.065674,
|
|
"rotZ": 3.46298432,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Riverside",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
265904,
|
|
265906,
|
|
265905
|
|
],
|
|
"CustomDeck": {
|
|
"2659": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "e103cf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.6573486,
|
|
"posY": 1.52216983,
|
|
"posZ": -12.0479879,
|
|
"rotX": 359.915039,
|
|
"rotY": 269.999451,
|
|
"rotZ": 0.0150706545,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Brackish Waters",
|
|
"Description": "Riverside. Bayou.",
|
|
"GMNotes": "{\n \"id\": \"81010\",\n \"type\": \"Location\",\n \"traits\": \"Riverside. Bayou.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Tilde|Square|Diamond|Hourglass\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Tilde|Square|Diamond|Hourglass\"\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": 265904,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2659": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ab9d69",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.61433,
|
|
"posY": 1.66265452,
|
|
"posZ": -12.0576391,
|
|
"rotX": 359.922546,
|
|
"rotY": 269.999573,
|
|
"rotZ": 0.00743459444,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Riverside",
|
|
"Description": "Riverside.",
|
|
"GMNotes": "{\n \"id\": \"81012\",\n \"type\": \"Location\",\n \"traits\": \"Riverside.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Triangle|Tilde\"\n },\n \"locationBack\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Triangle|Tilde\"\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 265906,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2659": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d5034e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 19.2437172,
|
|
"posY": 1.6808852,
|
|
"posZ": -12.168479,
|
|
"rotX": 359.918121,
|
|
"rotY": 269.9968,
|
|
"rotZ": 0.0191028565,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Riverside",
|
|
"Description": "Riverside.",
|
|
"GMNotes": "{\n \"id\": \"81011\",\n \"type\": \"Location\",\n \"traits\": \"Riverside.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Triangle|Tilde\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Tilde\",\n \"connections\": \"Triangle|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": true,
|
|
"Hands": true,
|
|
"CardID": 265905,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2659": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "d98751",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 18.7106,
|
|
"posY": 3.49689484,
|
|
"posZ": 1.51708639,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9909,
|
|
"rotZ": 0.01688183,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "New Orleans",
|
|
"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": [
|
|
5601,
|
|
5602,
|
|
5603
|
|
],
|
|
"CustomDeck": {
|
|
"56": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "63f502",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.5211306,
|
|
"posY": 1.53488,
|
|
"posZ": -2.29330063,
|
|
"rotX": 359.9095,
|
|
"rotY": 269.9999,
|
|
"rotZ": 0.0127211306,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cursed Shores",
|
|
"Description": "New Orleans. Bayou.",
|
|
"GMNotes": "{\n \"id\": \"81007\",\n \"type\": \"Location\",\n \"traits\": \"New Orleans. Bayou.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Square\",\n \"connections\": \"Plus|Triangle|Diamond|Hourglass\"\n },\n \"locationBack\": {\n \"icons\": \"Square\",\n \"connections\": \"Plus|Triangle|Diamond|Hourglass\"\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": 5601,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"56": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5ab18a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.3451738,
|
|
"posY": 1.53612328,
|
|
"posZ": 0.964896441,
|
|
"rotX": 359.911743,
|
|
"rotY": 269.9998,
|
|
"rotZ": 0.0143730827,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "New Orleans",
|
|
"Description": "New Orleans.",
|
|
"GMNotes": "{\n \"id\": \"81008\",\n \"type\": \"Location\",\n \"traits\": \"New Orleans.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Plus\",\n \"connections\": \"Square|Plus\"\n },\n \"locationBack\": {\n \"icons\": \"Plus\",\n \"connections\": \"Square|Plus\"\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 5602,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"56": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "499281",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 11.9989967,
|
|
"posY": 1.67677665,
|
|
"posZ": 0.581991255,
|
|
"rotX": 359.9236,
|
|
"rotY": 269.9988,
|
|
"rotZ": 0.0294962823,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "New Orleans",
|
|
"Description": "New Orleans.",
|
|
"GMNotes": "{\n \"id\": \"81009\",\n \"type\": \"Location\",\n \"traits\": \"New Orleans.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Plus\",\n \"connections\": \"Square|Plus\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Plus\",\n \"connections\": \"Square|Plus\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Location",
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 5603,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"56": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "917668",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.724661,
|
|
"posY": 1.61837292,
|
|
"posZ": 0.3733146,
|
|
"rotX": -4.07636271E-08,
|
|
"rotY": 180.033127,
|
|
"rotZ": 4.02776834E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agenda",
|
|
"Description": "Curse of the Rougarou",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"SidewaysCard": true,
|
|
"DeckIDs": [
|
|
6702,
|
|
6701,
|
|
6700
|
|
],
|
|
"CustomDeck": {
|
|
"67": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "16c364",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -14.9710331,
|
|
"posY": 1.23169279,
|
|
"posZ": 2.06155133,
|
|
"rotX": -0.0008857122,
|
|
"rotY": 180.024246,
|
|
"rotZ": -0.0006241726,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Curse Spreads",
|
|
"Description": "Agenda 3",
|
|
"GMNotes": "{\n \"id\": \"81004\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 8,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 6702,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"67": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ef1ce2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.03472,
|
|
"posY": 1.37977016,
|
|
"posZ": 2.3005023,
|
|
"rotX": 0.0006638235,
|
|
"rotY": 180.023911,
|
|
"rotZ": 0.01119711,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Rougarou Feeds",
|
|
"Description": "Agenda 2",
|
|
"GMNotes": "{\n \"id\": \"81003\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 6,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 6701,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"67": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0ea5ab",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.2118158,
|
|
"posY": 1.39688873,
|
|
"posZ": 2.33433819,
|
|
"rotX": 359.9605,
|
|
"rotY": 180.04538,
|
|
"rotZ": 359.922638,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "A Creature of the Bayou",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "{\n \"id\": \"81002\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 5,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"ScenarioCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"CardID": 6700,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"67": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "9d0d56",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.95604086,
|
|
"posY": 1.59660506,
|
|
"posZ": -10.4412193,
|
|
"rotX": 2.44365044E-08,
|
|
"rotY": 270.0,
|
|
"rotZ": 7.15666459E-09,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "Curse of the Rougarou",
|
|
"GMNotes": "{\"type\": \"ScenarioReference\", \"class\": \"Mythos\", \"tokens\": {\"back\": {\"Cultist\": {\"description\": \"-3. If The Rougarou is in your location, reveal another token.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. If The Rougarou is at your location, it attacks you.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-3. -6 instead if you are at a Bayou location.\", \"modifier\": -3}, \"Tablet\": {\"description\": \"Reveal another token. If you fail, until the end of the round you cannot move.\", \"modifier\": 0}}, \"front\": {\"Cultist\": {\"description\": \"-2. If The Rougarou is in your location, reveal another token.\", \"modifier\": -2}, \"Elder Thing\": {\"description\": \"-4. If The Rougarou is at your location, it attacks you.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-2. -4 instead if you are at a Bayou location.\", \"modifier\": -2}, \"Tablet\": {\"description\": \"Reveal another token. If you fail, until the end of the round you cannot move.\", \"modifier\": 0}}}, \"id\": \"81001\"}",
|
|
"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": 269800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2698": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7a167a",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 1.69,
|
|
"posY": 1.56,
|
|
"posZ": 14.24,
|
|
"rotX": 0,
|
|
"rotY": 225,
|
|
"rotZ": 0,
|
|
"scaleX": 2.0,
|
|
"scaleY": 2.0,
|
|
"scaleZ": 2.0
|
|
},
|
|
"Nickname": "Set-aside",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.0,
|
|
"g": 0.0,
|
|
"b": 0.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/2038485431565955058/F72FECE5488594A28292C06997A2E28A8B8961C5/",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
|
|
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 1,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"PhysicsMaterial": {
|
|
"StaticFriction": 0.6,
|
|
"DynamicFriction": 0.6,
|
|
"Bounciness": 0.0,
|
|
"FrictionCombine": 0,
|
|
"BounceCombine": 0
|
|
},
|
|
"Rigidbody": {
|
|
"Mass": 1.375,
|
|
"Drag": 5.0,
|
|
"AngularDrag": 5.0,
|
|
"UseGravity": true
|
|
},
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "74840a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 17.3596077,
|
|
"posY": 3.57613516,
|
|
"posZ": -12.289012,
|
|
"rotX": 359.920715,
|
|
"rotY": 270.0064,
|
|
"rotZ": 0.009957658,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Bear Trap",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"81020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Trap.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"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": 7400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"74": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c7b748",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 16.9255981,
|
|
"posY": 3.5765202,
|
|
"posZ": -12.6722469,
|
|
"rotX": 359.919373,
|
|
"rotY": 270.032959,
|
|
"rotZ": 0.0169957038,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Fishing Net",
|
|
"Description": "Trap.",
|
|
"GMNotes": "{\n \"id\": \"81021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Trap.\",\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"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": 7502,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"75": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ab24a6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.0694065,
|
|
"posY": 3.16315413,
|
|
"posZ": -58.82688,
|
|
"rotX": 1.58128332E-05,
|
|
"rotY": 270.000061,
|
|
"rotZ": 3.75782E-05,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lady Esprit",
|
|
"Description": "Dangerous Bokor",
|
|
"GMNotes": "{\n \"id\": \"81019\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 4,\n \"traits\": \"Ally. Sorcerer.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"Tags": [
|
|
"Asset",
|
|
"PlayerCard"
|
|
],
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": true,
|
|
"CardID": 449703,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"4497": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/",
|
|
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "cf0c00",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -3.7324996,
|
|
"posY": 1.58300042,
|
|
"posZ": -14.9941053,
|
|
"rotX": -3.1237974E-07,
|
|
"rotY": 270.002,
|
|
"rotZ": 4.793266E-07,
|
|
"scaleX": 2.2,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.2
|
|
},
|
|
"Nickname": "Curse of the Rougarou",
|
|
"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 = 'Curse of the Rougarou'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d47bca",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.68846941,
|
|
"posY": 1.61355889,
|
|
"posZ": -5.048594,
|
|
"rotX": 1.11580309E-08,
|
|
"rotY": 180.03273,
|
|
"rotZ": 1.30741755E-08,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Act",
|
|
"Description": "Curse of the Rougarou",
|
|
"GMNotes": "",
|
|
"AltLookAngle": {
|
|
"x": 0.0,
|
|
"y": 0.0,
|
|
"z": 0.0
|
|
},
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"SidewaysCard": true,
|
|
"DeckIDs": [
|
|
6604,
|
|
6603
|
|
],
|
|
"CustomDeck": {
|
|
"66": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "eb968b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.08824,
|
|
"posY": 1.2316978,
|
|
"posZ": 5.94349241,
|
|
"rotX": -0.00168570026,
|
|
"rotY": 180.033386,
|
|
"rotZ": 359.989319,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hunting the Rougarou",
|
|
"Description": "Act 2",
|
|
"GMNotes": "{\n \"id\": \"81006\",\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,
|
|
"CardID": 6604,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"66": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "548a9a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.0268946,
|
|
"posY": 1.37913668,
|
|
"posZ": 6.090815,
|
|
"rotX": 0.0017082165,
|
|
"rotY": 180.049576,
|
|
"rotZ": 359.9336,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Finding Lady Esprit",
|
|
"Description": "Act 1",
|
|
"GMNotes": "{\n \"id\": \"81005\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"clueThresholdPerInvestigator\": 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,
|
|
"CardID": 6603,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"66": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"AttachedDecals": [
|
|
{
|
|
"Transform": {
|
|
"posX": -0.002,
|
|
"posY": -0.089,
|
|
"posZ": -0.002,
|
|
"rotX": 270.0,
|
|
"rotY": 0,
|
|
"rotZ": 0.0,
|
|
"scaleX": 2,
|
|
"scaleY": 2,
|
|
"scaleZ": 2
|
|
},
|
|
"CustomDecal": {
|
|
"Name": "dunwich_back",
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
|
|
"Size": 7.4
|
|
}
|
|
}
|
|
]
|
|
} |