SCED/content/curated/en/scenario_the_red_room.json
2023-06-26 10:13:37 +02:00

2566 lines
85 KiB
JSON

{
"GUID": "fa4327",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2498093,
"posY": 1.46560538,
"posZ": 3.98640418,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168740042,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Red Room",
"Description": "",
"GMNotes": "",
"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/798737729142946225/F5A6228957B37E945B425681115D09E7B8543BC6/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.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={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"023e21\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6752,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9987,\"z\":180.0168}},\"0a7a51\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0169}},\"1d2e12\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6585,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0003,\"z\":180.0168}},\"26b589\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.658,\"z\":0.3733},\"rot\":{\"x\":359.9198,\"y\":269.9589,\"z\":0.0169}},\"469d58\":{\"lock\":false,\"pos\":{\"x\":-11.9576,\"y\":1.6717,\"z\":3.1538},\"rot\":{\"x\":359.9201,\"y\":269.9781,\"z\":0.0169}},\"64f279\":{\"lock\":false,\"pos\":{\"x\":-17.1197,\"y\":1.889,\"z\":-11.5094},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":45,\"z\":0}},\"cde2d1\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6459,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":270.0159,\"z\":0.0168}},\"ce2091\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6778,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0169}},\"d63331\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":180.0169}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "a45247",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69490063,
"posY": 1.55831909,
"posZ": 14.2793684,
"rotX": 359.955139,
"rotY": 224.998032,
"rotZ": 0.06867476,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "The Red Room",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.02148666,
"g": 0.00100758043,
"b": 0.02148666
},
"LayoutGroupSortIndex": 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/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/",
"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
},
"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": "30adbd",
"Name": "Card",
"Transform": {
"posX": -15.0673275,
"posY": 3.387683,
"posZ": 63.514534,
"rotX": 0.02031861,
"rotY": 269.9999,
"rotZ": 180.016846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Passage",
"Description": "",
"GMNotes": "",
"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": 205,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8038f1",
"Name": "Card",
"Transform": {
"posX": -11.4405985,
"posY": 3.29149461,
"posZ": 64.7526245,
"rotX": 0.0208079889,
"rotY": 269.997,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Staircase",
"Description": "",
"GMNotes": "",
"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": 207,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "52328e",
"Name": "Card",
"Transform": {
"posX": -8.298525,
"posY": 3.29359269,
"posZ": 68.0225143,
"rotX": 0.0208081212,
"rotY": 269.9995,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Red Room",
"Description": "Tower",
"GMNotes": "",
"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": 206,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "06e5e4",
"Name": "Card",
"Transform": {
"posX": -15.51348,
"posY": 3.3842454,
"posZ": 61.9739647,
"rotX": 0.0166745838,
"rotY": 270.0,
"rotZ": 0.0134602068,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "I have seen Death",
"Description": "Great Red Room of Lorraine Castle",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 265313,
"SidewaysCard": false,
"CustomDeck": {
"2653": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "023e21",
"Name": "Deck",
"Transform": {
"posX": -3.92768025,
"posY": 1.67523253,
"posZ": 5.757151,
"rotX": 359.919739,
"rotY": 269.998718,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter deck",
"Description": "The Red Room",
"GMNotes": "",
"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": [
12117,
12119,
12119,
12117,
12117,
12118,
12118
],
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "18e09c",
"Name": "Card",
"Transform": {
"posX": -11.5845232,
"posY": 1.4910816,
"posZ": 72.09994,
"rotX": 0.0152167194,
"rotY": 270.0035,
"rotZ": 180.0134,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rotting Remains",
"Description": "Terror.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 12117,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f1a34d",
"Name": "Card",
"Transform": {
"posX": -3.92765832,
"posY": 1.66310287,
"posZ": 5.75723839,
"rotX": 359.9146,
"rotY": 270.0124,
"rotZ": 180.019363,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dissonant Voices",
"Description": "Terror.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 12119,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "260768",
"Name": "Card",
"Transform": {
"posX": -3.84990931,
"posY": 1.80129647,
"posZ": 10.3799953,
"rotX": 359.918152,
"rotY": 269.999573,
"rotZ": 0.01625902,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dissonant Voices",
"Description": "Terror.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 12119,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da8001",
"Name": "Card",
"Transform": {
"posX": -3.850006,
"posY": 1.66159856,
"posZ": 10.3800077,
"rotX": 359.918427,
"rotY": 269.999878,
"rotZ": 0.0162331,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rotting Remains",
"Description": "Terror.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 12117,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa3d47",
"Name": "Card",
"Transform": {
"posX": -3.84987974,
"posY": 1.79820752,
"posZ": 10.3799982,
"rotX": 359.9067,
"rotY": 269.99942,
"rotZ": 0.0104999775,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rotting Remains",
"Description": "Terror.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 12117,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c40f57",
"Name": "Card",
"Transform": {
"posX": -3.84991217,
"posY": 1.799692,
"posZ": 10.3799963,
"rotX": 359.918335,
"rotY": 269.999451,
"rotZ": 0.0162123721,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frozen in Fear",
"Description": "Terror.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 12118,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "27c05d",
"Name": "Card",
"Transform": {
"posX": -3.84990883,
"posY": 1.80182087,
"posZ": 10.3799953,
"rotX": 359.918274,
"rotY": 269.999451,
"rotZ": 0.0163153373,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frozen in Fear",
"Description": "Terror.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 12118,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "26b589",
"Name": "Deck",
"Transform": {
"posX": -2.7246573,
"posY": 1.65796614,
"posZ": 0.373314142,
"rotX": 359.919769,
"rotY": 269.958862,
"rotZ": 0.0168952122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda Deck",
"Description": "The Red Room",
"GMNotes": "",
"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": [
105,
104,
103,
102,
101,
100
],
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "76c93e",
"Name": "Card",
"Transform": {
"posX": -35.0126953,
"posY": 1.32807434,
"posZ": 66.0736542,
"rotX": 0.0133193536,
"rotY": 269.996368,
"rotZ": 0.0147974752,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Intolerable Darkness",
"Description": "Agenda 6a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 105,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f94b0e",
"Name": "Card",
"Transform": {
"posX": -31.375824,
"posY": 1.3293761,
"posZ": 66.2727356,
"rotX": 0.0102528995,
"rotY": 269.9964,
"rotZ": 0.0146313012,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "In the Dark",
"Description": "Agenda 5a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 104,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f88c9d",
"Name": "Card",
"Transform": {
"posX": -27.3797035,
"posY": 1.33085132,
"posZ": 66.13824,
"rotX": 0.0121232616,
"rotY": 269.996277,
"rotZ": 0.01436247,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Darkness Awakens",
"Description": "Agenda 4a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 103,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "32bf53",
"Name": "Card",
"Transform": {
"posX": -34.2652168,
"posY": 1.33096135,
"posZ": 76.18955,
"rotX": -0.002071608,
"rotY": 269.996277,
"rotZ": 0.01289861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Haunted Room",
"Description": "Agenda 3a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 102,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fd1a1a",
"Name": "Card",
"Transform": {
"posX": -30.7904434,
"posY": 1.33268416,
"posZ": 76.2614441,
"rotX": 0.0162277576,
"rotY": 269.992432,
"rotZ": 0.0162499454,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Journey",
"Description": "Agenda 2a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 101,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd51ee",
"Name": "Card",
"Transform": {
"posX": -31.1046543,
"posY": 1.46790886,
"posZ": 76.07177,
"rotX": 0.00410026731,
"rotY": 269.9986,
"rotZ": 0.0187994726,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Waiting",
"Description": "Agenda 1a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 100,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "cde2d1",
"Name": "Deck",
"Transform": {
"posX": -2.688497,
"posY": 1.64587784,
"posZ": -5.048539,
"rotX": 359.919739,
"rotY": 270.01593,
"rotZ": 0.0168151837,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "The Red Room",
"GMNotes": "",
"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": [
115,
114,
113,
112,
111,
110,
109,
108,
107,
106
],
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e80e5f",
"Name": "Card",
"Transform": {
"posX": -24.4347878,
"posY": 1.33294713,
"posZ": 70.4166,
"rotX": 0.00186997687,
"rotY": 270.021149,
"rotZ": 0.0129771233,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Escape!",
"Description": "Act 5a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 115,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8bf5ba",
"Name": "Card",
"Transform": {
"posX": -20.8521385,
"posY": 1.33447957,
"posZ": 70.21744,
"rotX": 0.01544195,
"rotY": 270.022461,
"rotZ": 0.0150617212,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Fire!",
"Description": "Act 4c",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 114,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a36834",
"Name": "Card",
"Transform": {
"posX": -17.1488171,
"posY": 1.33587241,
"posZ": 70.3484344,
"rotX": 0.0160071682,
"rotY": 269.921631,
"rotZ": 0.0151422732,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Light Vanishes",
"Description": "Act 4a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 113,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "458e59",
"Name": "Card",
"Transform": {
"posX": -27.6201935,
"posY": 1.33345819,
"posZ": 74.93426,
"rotX": 0.01807161,
"rotY": 270.021881,
"rotZ": 0.015386709,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creping Darkness",
"Description": "Act 3c",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 112,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "49c091",
"Name": "Card",
"Transform": {
"posX": -23.7888031,
"posY": 1.33477747,
"posZ": 74.86562,
"rotX": 0.01583102,
"rotY": 270.018,
"rotZ": 0.0152091859,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shadows Lengthen",
"Description": "Act 3a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 111,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c606f3",
"Name": "Card",
"Transform": {
"posX": -20.1922913,
"posY": 1.33595657,
"posZ": 75.17544,
"rotX": 0.005859049,
"rotY": 270.017853,
"rotZ": 0.0137988,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Alcove",
"Description": "Act 2c",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 110,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6d56db",
"Name": "Card",
"Transform": {
"posX": -16.93225,
"posY": 1.33722687,
"posZ": 75.58702,
"rotX": 0.004708577,
"rotY": 270.019958,
"rotZ": 0.0138291279,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Close Inspection",
"Description": "Act 2a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 109,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a38da7",
"Name": "Card",
"Transform": {
"posX": -23.7809353,
"posY": 1.33598387,
"posZ": 80.12428,
"rotX": 0.00082092674,
"rotY": 270.018158,
"rotZ": 0.0132075567,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Passage",
"Description": "Act 1e",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 108,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b2aea4",
"Name": "Card",
"Transform": {
"posX": -20.1798859,
"posY": 1.33776987,
"posZ": 80.34997,
"rotX": 0.0203394126,
"rotY": 270.0177,
"rotZ": 0.0166067854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "To be sure...",
"Description": "Act 1c",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 107,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "08e915",
"Name": "Card",
"Transform": {
"posX": -19.8171158,
"posY": 1.47823215,
"posZ": 80.22083,
"rotX": 0.008114806,
"rotY": 270.02478,
"rotZ": 0.0170258619,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Welcome, Stranger.",
"Description": "Act 1a",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 106,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "1d2e12",
"Name": "Card",
"Transform": {
"posX": -3.95596743,
"posY": 1.658471,
"posZ": -10.4411888,
"rotX": 359.919739,
"rotY": 270.0003,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "The Red Room",
"GMNotes": "",
"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": 208,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "469d58",
"Name": "Deck",
"Transform": {
"posX": -11.9575977,
"posY": 1.67168152,
"posZ": 3.15376687,
"rotX": 359.9201,
"rotY": 269.9781,
"rotZ": 0.01690835,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Setup/Resolution",
"Description": "The Red Room",
"GMNotes": "",
"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": [
214,
209,
203,
202,
201,
200
],
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0300fc",
"Name": "Card",
"Transform": {
"posX": 9.82580948,
"posY": 1.03170264,
"posZ": 2.8207984,
"rotX": -0.000786121353,
"rotY": 180.000015,
"rotZ": -0.000549397431,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 214,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d409d",
"Name": "Card",
"Transform": {
"posX": 9.609754,
"posY": 1.17668462,
"posZ": 2.912107,
"rotX": 359.990143,
"rotY": 179.999969,
"rotZ": 359.99292,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 209,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dca40",
"Name": "Card",
"Transform": {
"posX": 9.744365,
"posY": 1.19415307,
"posZ": 3.01195145,
"rotX": -0.00141439249,
"rotY": 179.994125,
"rotZ": 0.00660933,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 203,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7356a3",
"Name": "Card",
"Transform": {
"posX": 9.897709,
"posY": 1.18040884,
"posZ": 2.71923351,
"rotX": 0.000556538231,
"rotY": 179.999908,
"rotZ": -0.00170198327,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 202,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a531f3",
"Name": "Card",
"Transform": {
"posX": -11.8963413,
"posY": 1.81814706,
"posZ": 0.133959889,
"rotX": 359.9232,
"rotY": 269.995178,
"rotZ": 179.912369,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 201,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ff21c5",
"Name": "Card",
"Transform": {
"posX": -11.9331532,
"posY": 1.6724391,
"posZ": -0.190449759,
"rotX": 359.9218,
"rotY": 269.996216,
"rotZ": 180.027954,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 200,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ce2091",
"Name": "Deck",
"Transform": {
"posX": -17.1200333,
"posY": 1.67776322,
"posZ": 3.860006,
"rotX": 359.9201,
"rotY": 269.999329,
"rotZ": 0.01687845,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Servants",
"Description": "The Red Room",
"GMNotes": "",
"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": [
210,
211,
212
],
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "47ad31",
"Name": "Card",
"Transform": {
"posX": -2.15953755,
"posY": 1.33861208,
"posZ": 62.25457,
"rotX": 0.0006173288,
"rotY": 269.999481,
"rotZ": 0.009613581,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Man with Shaded Eyes",
"Description": "Old Servant",
"GMNotes": "",
"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": 210,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "02186e",
"Name": "Card",
"Transform": {
"posX": -2.93235588,
"posY": 1.33945549,
"posZ": 64.75702,
"rotX": 0.0198722016,
"rotY": 269.999939,
"rotZ": 0.01632838,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Man with Withered Arm",
"Description": "Old Servant",
"GMNotes": "",
"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": 211,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "522715",
"Name": "Card",
"Transform": {
"posX": -2.912316,
"posY": 1.47985148,
"posZ": 64.81804,
"rotX": 0.0104995929,
"rotY": 269.999268,
"rotZ": 0.0149084022,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Woman",
"Description": "Old Servant",
"GMNotes": "",
"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": 212,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "0a7a51",
"Name": "Card",
"Transform": {
"posX": -17.11993,
"posY": 1.67990053,
"posZ": -0.0300093722,
"rotX": 359.9201,
"rotY": 270.0,
"rotZ": 180.016861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hearth",
"Description": "The Red Room",
"GMNotes": "",
"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": 204,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "64f279",
"Name": "Tablet",
"Transform": {
"posX": -17.1196785,
"posY": 1.8889842,
"posZ": -11.5093956,
"rotX": 359.9201,
"rotY": 269.999634,
"rotZ": 0.0168639328,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Red Room",
"Description": "by H.G. Wells",
"GMNotes": "",
"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,
"Tablet": {
"PageURL": "https://drive.google.com/file/d/1jmBwXA5imqZUKIxCo77vWT78zfLBNNbO/view"
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d63331",
"Name": "Card",
"Transform": {
"posX": -50.9243851,
"posY": 1.7294482,
"posZ": 8.178432,
"rotX": 359.9201,
"rotY": 270.0003,
"rotZ": 180.016861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "The Red Room",
"GMNotes": "",
"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": 208,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
}