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

3050 lines
95 KiB
JSON

{
"GUID": "0d7a8d",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2499151,
"posY": 1.46560514,
"posZ": 3.98637462,
"rotX": 359.920135,
"rotY": 269.999847,
"rotZ": 0.0168726072,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "The Curse of Amulotep",
"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/798737729142921541/F138D6DF73FB79AC6D1C420869299A481AFA7B90/",
"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\":{\"0ce6bb\":{\"lock\":false,\"pos\":{\"x\":-12.6932,\"y\":1.6812,\"z\":6.9294},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"5127f6\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6662,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.9998,\"z\":180.0686}},\"5e4e43\":{\"lock\":false,\"pos\":{\"x\":-13.2968,\"y\":1.6723,\"z\":-7.7574},\"rot\":{\"x\":359.9201,\"y\":270.028,\"z\":180.0168}},\"8075b9\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9854,\"z\":0.0169}},\"a08daa\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"b3cbc1\":{\"lock\":false,\"pos\":{\"x\":-3.8937,\"y\":1.5826,\"z\":-14.6014},\"rot\":{\"x\":359.9197,\"y\":270.0009,\"z\":0.0168}},\"c6a9ae\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7611,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9857,\"z\":180.0168}},\"dc50b3\":{\"lock\":false,\"pos\":{\"x\":-3.9555,\"y\":1.6556,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":269.9999,\"z\":0.0168}},\"ecbf8f\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6754,\"z\":-15.2799},\"rot\":{\"x\":359.9201,\"y\":270.0269,\"z\":180.0168}},\"f9fc71\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7294,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5127f6",
"Name": "Deck",
"Transform": {
"posX": 1.69650233,
"posY": 1.666196,
"posZ": 14.2788038,
"rotX": 359.955139,
"rotY": 224.999786,
"rotZ": 180.068649,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Set Aside",
"Description": "the Curse of Amulotep",
"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": [
3624,
212,
211,
210,
209,
207
],
"CustomDeck": {
"36": {
"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
},
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "159f90",
"Name": "Card",
"Transform": {
"posX": -10.2367868,
"posY": 1.3997227,
"posZ": 10.5120125,
"rotX": -0.000602587243,
"rotY": 180.0,
"rotZ": 180.000351,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wizard of the Order",
"Description": "Humanoid. Cultist.",
"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,
"Hands": true,
"CardID": 3624,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "058b91",
"Name": "Card",
"Transform": {
"posX": 8.027248,
"posY": 1.0320425,
"posZ": -2.090732,
"rotX": 359.991241,
"rotY": 179.944534,
"rotZ": 0.02154897,
"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,
"Hands": true,
"CardID": 212,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "451714",
"Name": "Card",
"Transform": {
"posX": 7.912696,
"posY": 1.22698736,
"posZ": -2.18488026,
"rotX": 359.993683,
"rotY": 180.004959,
"rotZ": 2.700692,
"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,
"Hands": true,
"CardID": 211,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7667de",
"Name": "Card",
"Transform": {
"posX": 8.457997,
"posY": 1.194848,
"posZ": -1.83282769,
"rotX": 359.989258,
"rotY": 180.004272,
"rotZ": 0.7061461,
"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,
"Hands": true,
"CardID": 210,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c29ab7",
"Name": "Card",
"Transform": {
"posX": 7.61443233,
"posY": 1.23148751,
"posZ": -1.96294737,
"rotX": -0.005386872,
"rotY": 179.968689,
"rotZ": 2.74007,
"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,
"Hands": true,
"CardID": 209,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "612ad3",
"Name": "Card",
"Transform": {
"posX": 8.220671,
"posY": 1.17846644,
"posZ": -0.8211413,
"rotX": 0.000796120032,
"rotY": 179.999588,
"rotZ": -0.00076509075,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Amulotep",
"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,
"Hands": true,
"CardID": 207,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c6a9ae",
"Name": "Deck",
"Transform": {
"posX": -3.9274,
"posY": 1.76105058,
"posZ": 5.75720072,
"rotX": 359.919739,
"rotY": 269.985657,
"rotZ": 180.016846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter deck",
"Description": "thw Curse os Amulotep",
"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": [
306,
307,
308,
309,
310,
3619,
3617,
3619,
3618,
3617,
3618,
3617,
3628,
3628,
3636,
3636,
3635,
3635,
3625,
3625,
3624,
3623,
3623,
3623,
3626,
3626,
3627,
3627
],
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"36": {
"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": "5e0a27",
"Name": "Card",
"Transform": {
"posX": -3.76622987,
"posY": 1.03174031,
"posZ": 1.9328872,
"rotX": 0.00119623914,
"rotY": 179.9954,
"rotZ": 0.0010214512,
"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,
"CardID": 306,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "113033",
"Name": "Card",
"Transform": {
"posX": -4.250121,
"posY": 1.18227375,
"posZ": 1.82911134,
"rotX": -0.004281663,
"rotY": 179.994781,
"rotZ": 0.08178034,
"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,
"CardID": 307,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "05fb57",
"Name": "Card",
"Transform": {
"posX": -4.47395,
"posY": 1.19723308,
"posZ": 1.93280756,
"rotX": 1.35843929E-05,
"rotY": 179.996292,
"rotZ": -8.3093E-05,
"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,
"CardID": 308,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9af55",
"Name": "Card",
"Transform": {
"posX": -3.92754436,
"posY": 1.1829586,
"posZ": 2.03801513,
"rotX": 359.9786,
"rotY": 179.998276,
"rotZ": 359.9436,
"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,
"CardID": 309,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd4c83",
"Name": "Card",
"Transform": {
"posX": 7.671148,
"posY": 1.20812607,
"posZ": 32.69593,
"rotX": 0.00138037081,
"rotY": 179.999985,
"rotZ": -0.0007976301,
"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,
"Hands": true,
"CardID": 310,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 5,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "260768",
"Name": "Card",
"Transform": {
"posX": -19.1363125,
"posY": 1.231699,
"posZ": -7.400251,
"rotX": -0.000820844667,
"rotY": 270.0089,
"rotZ": -0.000237511369,
"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,
"CardID": 3619,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": -19.2726822,
"posY": 1.23161709,
"posZ": -4.69493532,
"rotX": -0.00461160857,
"rotY": 269.9793,
"rotZ": -0.00137890945,
"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,
"CardID": 3617,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": -19.9809151,
"posY": 1.28156877,
"posZ": -7.79831076,
"rotX": 0.011735606,
"rotY": 270.009033,
"rotZ": 0.00468536,
"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,
"CardID": 3619,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": -18.967617,
"posY": 1.231716,
"posZ": -10.49529,
"rotX": -3.11068325E-05,
"rotY": 270.0013,
"rotZ": -7.22032553E-07,
"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,
"CardID": 3618,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "18e09c",
"Name": "Card",
"Transform": {
"posX": -20.3450146,
"posY": 1.28128624,
"posZ": -4.537053,
"rotX": 0.006250872,
"rotY": 269.979126,
"rotZ": -0.00126227119,
"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,
"CardID": 3617,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": -19.6207886,
"posY": 1.28169692,
"posZ": -10.6840782,
"rotX": -3.134726E-05,
"rotY": 270.000763,
"rotZ": 3.597804E-06,
"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,
"CardID": 3618,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": -21.5193939,
"posY": 1.337018,
"posZ": -4.78068352,
"rotX": 0.0181244723,
"rotY": 269.978149,
"rotZ": 0.00253973226,
"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,
"CardID": 3617,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "9449d7",
"Name": "Card",
"Transform": {
"posX": -21.2385483,
"posY": 1.231653,
"posZ": 10.5873995,
"rotX": -0.00300062378,
"rotY": 270.038849,
"rotZ": -0.00198885379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Locked Door",
"Description": "Obstacle.",
"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,
"CardID": 3628,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "1340ff",
"Name": "Card",
"Transform": {
"posX": -21.3002548,
"posY": 1.37891018,
"posZ": 10.607831,
"rotX": 359.985657,
"rotY": 270.026245,
"rotZ": 0.0447875448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Locked Door",
"Description": "Obstacle.",
"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,
"CardID": 3628,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": -21.0626354,
"posY": 1.23170877,
"posZ": -1.44687235,
"rotX": -0.0005362527,
"rotY": 270.0003,
"rotZ": -0.0005294237,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dreams of R'lyeh",
"Description": "Omen.",
"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,
"CardID": 3636,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "8e441a",
"Name": "Card",
"Transform": {
"posX": -21.0565968,
"posY": 1.37954974,
"posZ": -1.35146141,
"rotX": -0.00136643345,
"rotY": 269.999084,
"rotZ": -0.004670003,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dreams of R'lyeh",
"Description": "Omen.",
"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,
"CardID": 3636,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "67f705",
"Name": "Card",
"Transform": {
"posX": -20.22409,
"posY": 1.23170567,
"posZ": 1.936243,
"rotX": -0.0007621244,
"rotY": 269.999939,
"rotZ": -0.0004609758,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Young Deep One",
"Description": "Humanoid. Monster. Deep One.",
"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,
"CardID": 3635,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "bf03e4",
"Name": "Card",
"Transform": {
"posX": -20.125206,
"posY": 1.37721193,
"posZ": 2.32091284,
"rotX": 359.99292,
"rotY": 269.999817,
"rotZ": 359.992157,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Young Deep One",
"Description": "Humanoid. Monster. Deep One.",
"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,
"CardID": 3635,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "6f5b7b",
"Name": "Card",
"Transform": {
"posX": -19.6800156,
"posY": 1.38250053,
"posZ": -1.33474028,
"rotX": 0.0229158234,
"rotY": 270.019867,
"rotZ": 179.95369,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Chanting",
"Description": "Hex.",
"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,
"CardID": 3625,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "df668b",
"Name": "Card",
"Transform": {
"posX": -19.5443554,
"posY": 1.2345134,
"posZ": -1.46994078,
"rotX": -0.00131354737,
"rotY": 270.020233,
"rotZ": 180.000565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Chanting",
"Description": "Hex.",
"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,
"CardID": 3625,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "159f90",
"Name": "Card",
"Transform": {
"posX": -20.0503387,
"posY": 1.23431253,
"posZ": -4.35796,
"rotX": 359.9875,
"rotY": 270.082672,
"rotZ": 179.956573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wizard of the Order",
"Description": "Humanoid. Cultist.",
"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,
"CardID": 3624,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "c70e63",
"Name": "Card",
"Transform": {
"posX": -19.79794,
"posY": 1.39947391,
"posZ": -8.725274,
"rotX": 359.928955,
"rotY": 270.019775,
"rotZ": 180.117462,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Acolyte",
"Description": "Humanoid. Cultist.",
"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,
"CardID": 3623,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "4072d7",
"Name": "Card",
"Transform": {
"posX": -19.9280281,
"posY": 1.38005173,
"posZ": -8.697902,
"rotX": 359.993225,
"rotY": 270.0205,
"rotZ": 180.0073,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Acolyte",
"Description": "Humanoid. Cultist.",
"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,
"CardID": 3623,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "c70e63",
"Name": "Card",
"Transform": {
"posX": -20.0444756,
"posY": 1.23453021,
"posZ": -8.332029,
"rotX": -0.000678319542,
"rotY": 270.020325,
"rotZ": 180.000427,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Acolyte",
"Description": "Humanoid. Cultist.",
"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,
"CardID": 3623,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "476433",
"Name": "Card",
"Transform": {
"posX": -22.1894913,
"posY": 1.23165715,
"posZ": 8.126968,
"rotX": -0.00287241978,
"rotY": 269.726624,
"rotZ": -0.000931444752,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunting Nightgaunt",
"Description": "Monster. Nightgaunt.",
"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,
"CardID": 3626,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "b124ef",
"Name": "Card",
"Transform": {
"posX": -22.37006,
"posY": 1.37715232,
"posZ": 7.785293,
"rotX": 0.00128005829,
"rotY": 269.726654,
"rotZ": 0.00324654416,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunting Nightgaunt",
"Description": "Monster. Nightgaunt.",
"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,
"CardID": 3626,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "dd287a",
"Name": "Card",
"Transform": {
"posX": -21.2239914,
"posY": 1.231599,
"posZ": 12.258028,
"rotX": 0.00274006533,
"rotY": 270.360443,
"rotZ": 0.00162735826,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On Wings of Darkness",
"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,
"CardID": 3627,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "b06ff1",
"Name": "Card",
"Transform": {
"posX": -21.6091557,
"posY": 1.37787735,
"posZ": 11.9596348,
"rotX": 0.223490238,
"rotY": 269.9995,
"rotZ": 0.3121837,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On Wings of Darkness",
"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,
"CardID": 3627,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"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": "8075b9",
"Name": "Deck",
"Transform": {
"posX": -2.72460032,
"posY": 1.656641,
"posZ": 0.373299658,
"rotX": 359.919739,
"rotY": 269.985443,
"rotZ": 0.0168578327,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act",
"Description": "the Curse of Amulotep",
"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": [
153702,
153701,
153700
],
"CustomDeck": {
"1537": {
"FaceURL": "https://i.imgur.com/rC4H8MT.jpg/",
"BackURL": "https://i.imgur.com/f17WFGr.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5b67b6",
"Name": "Card",
"Transform": {
"posX": 1.04006052,
"posY": 1.0316819,
"posZ": -6.57859564,
"rotX": 0.00134711387,
"rotY": 180.027924,
"rotZ": 0.000181103329,
"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,
"Hands": true,
"CardID": 153702,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "https://i.imgur.com/rC4H8MT.jpg/",
"BackURL": "https://i.imgur.com/f17WFGr.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "400851",
"Name": "Card",
"Transform": {
"posX": 0.7540432,
"posY": 1.17448008,
"posZ": -6.46157,
"rotX": 0.008391998,
"rotY": 180.036026,
"rotZ": -0.00414735125,
"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,
"Hands": true,
"CardID": 153701,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "https://i.imgur.com/rC4H8MT.jpg/",
"BackURL": "https://i.imgur.com/f17WFGr.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed068c",
"Name": "Card",
"Transform": {
"posX": 0.851625741,
"posY": 1.19413686,
"posZ": -6.79852438,
"rotX": 0.00112353184,
"rotY": 180.03949,
"rotZ": -3.1784E-05,
"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,
"Hands": true,
"CardID": 153700,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "https://i.imgur.com/rC4H8MT.jpg/",
"BackURL": "https://i.imgur.com/f17WFGr.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a08daa",
"Name": "Deck",
"Transform": {
"posX": -2.6884,
"posY": 1.65349424,
"posZ": -5.048501,
"rotX": 359.919739,
"rotY": 269.985535,
"rotZ": 0.0168577153,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda",
"Description": "the Curse of Amulotep",
"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": [
153606,
153605,
153604,
153603
],
"CustomDeck": {
"1536": {
"FaceURL": "https://i.imgur.com/rC4H8MT.jpg/",
"BackURL": "https://i.imgur.com/f17WFGr.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d484eb",
"Name": "Card",
"Transform": {
"posX": -2.214325,
"posY": 1.03168476,
"posZ": -4.55904865,
"rotX": 0.0013084386,
"rotY": 180.025513,
"rotZ": 0.000269935845,
"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,
"Hands": true,
"CardID": 153606,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "https://i.imgur.com/rC4H8MT.jpg/",
"BackURL": "https://i.imgur.com/f17WFGr.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "31e3dd",
"Name": "Card",
"Transform": {
"posX": -2.53834987,
"posY": 1.17520928,
"posZ": -4.46891546,
"rotX": 0.00776327541,
"rotY": 180.01564,
"rotZ": 0.03492402,
"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,
"Hands": true,
"CardID": 153605,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "https://i.imgur.com/rC4H8MT.jpg/",
"BackURL": "https://i.imgur.com/f17WFGr.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3a7148",
"Name": "Card",
"Transform": {
"posX": -2.02572513,
"posY": 1.19203329,
"posZ": -4.20022058,
"rotX": 7.996017E-05,
"rotY": 180.013641,
"rotZ": 0.02203136,
"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,
"Hands": true,
"CardID": 153604,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "https://i.imgur.com/rC4H8MT.jpg/",
"BackURL": "https://i.imgur.com/f17WFGr.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fbc830",
"Name": "Card",
"Transform": {
"posX": -1.82731581,
"posY": 1.17831528,
"posZ": -4.089193,
"rotX": 0.008273337,
"rotY": 180.046066,
"rotZ": 0.0147334635,
"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,
"Hands": true,
"CardID": 153603,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "https://i.imgur.com/rC4H8MT.jpg/",
"BackURL": "https://i.imgur.com/f17WFGr.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "dc50b3",
"Name": "Card",
"Transform": {
"posX": -3.9555006,
"posY": 1.6556474,
"posZ": -10.4413023,
"rotX": 359.919739,
"rotY": 269.999939,
"rotZ": 0.0168410745,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Setup",
"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": 208,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b3cbc1",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.89370012,
"posY": 1.58262491,
"posZ": -14.6014023,
"rotX": 359.919739,
"rotY": 270.000854,
"rotZ": 0.0168365221,
"scaleX": 2.2,
"scaleY": 1.0,
"scaleZ": 2.2
},
"Nickname": "The Curse of Amultep",
"Description": "click to set chaos token difficulty",
"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,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/",
"ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "name = 'The Curse of Amultep'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ce6bb",
"Name": "Deck",
"Transform": {
"posX": -12.6932,
"posY": 1.68115938,
"posZ": 6.9294,
"rotX": 359.9201,
"rotY": 270.000061,
"rotZ": 180.016861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carriage locations",
"Description": "the Curse of Amulotep",
"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": [
206,
205,
204,
203,
202
],
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ebbc12",
"Name": "Card",
"Transform": {
"posX": 2.1671803,
"posY": 1.031986,
"posZ": -5.67913628,
"rotX": 359.991669,
"rotY": 179.947571,
"rotZ": 0.0196663551,
"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,
"Hands": true,
"CardID": 206,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca4f69",
"Name": "Card",
"Transform": {
"posX": 2.00537515,
"posY": 1.22909641,
"posZ": -5.636891,
"rotX": 359.9915,
"rotY": 179.96431,
"rotZ": 2.81170535,
"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,
"Hands": true,
"CardID": 205,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "274def",
"Name": "Card",
"Transform": {
"posX": 2.46579051,
"posY": 1.14619112,
"posZ": -5.984417,
"rotX": -0.0033099514,
"rotY": 179.9732,
"rotZ": 356.916,
"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,
"Hands": true,
"CardID": 204,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f96252",
"Name": "Card",
"Transform": {
"posX": 1.51333129,
"posY": 1.17700374,
"posZ": -5.523969,
"rotX": 0.00208611344,
"rotY": 180.024673,
"rotZ": 0.003772128,
"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,
"Hands": true,
"CardID": 203,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1ee55f",
"Name": "Card",
"Transform": {
"posX": 2.22626185,
"posY": 1.17523718,
"posZ": -5.75594568,
"rotX": 0.002359711,
"rotY": 180.019928,
"rotZ": 0.00525712,
"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,
"Hands": true,
"CardID": 202,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "5e4e43",
"Name": "Card",
"Transform": {
"posX": -13.2967634,
"posY": 1.672294,
"posZ": -7.75742245,
"rotX": 359.9201,
"rotY": 270.028,
"rotZ": 180.016815,
"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": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ecbf8f",
"Name": "Card",
"Transform": {
"posX": -17.1200943,
"posY": 1.67541027,
"posZ": -15.2799025,
"rotX": 359.9201,
"rotY": 270.026917,
"rotZ": 180.016815,
"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": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f9fc71",
"Name": "Card",
"Transform": {
"posX": -50.9244,
"posY": 1.7294482,
"posZ": 8.178401,
"rotX": 359.9201,
"rotY": 270.000061,
"rotZ": 180.016861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Setup",
"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": 208,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/5lwfXNg.jpg/",
"BackURL": "https://i.imgur.com/JctVOQy.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
}