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

4889 lines
156 KiB
JSON

{
"GUID": "bfefd4",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2497835,
"posY": 1.46560562,
"posZ": 3.98640347,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.0168738142,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Stolen Baillius",
"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/798737729142943616/2B7B73A110A3EC225C854F85AB009F04859E3806/",
"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\":{\"00dc67\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"0e6c8c\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.6971,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"102272\":{\"lock\":false,\"pos\":{\"x\":-10.2894,\"y\":1.6717,\"z\":2.0208},\"rot\":{\"x\":359.9201,\"y\":270.0023,\"z\":0.0169}},\"33116d\":{\"lock\":false,\"pos\":{\"x\":-27.119,\"y\":1.6184,\"z\":-3.2752},\"rot\":{\"x\":0.0446,\"y\":44.9999,\"z\":359.9316}},\"40f354\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"631549\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0089,\"z\":359.92}},\"6a9431\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0034,\"z\":0.0803}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.4879,\"y\":1.61,\"z\":-0.2199},\"rot\":{\"x\":359.9201,\"y\":269.9942,\"z\":0.0169}},\"79090a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}},\"82e02f\":{\"lock\":false,\"pos\":{\"x\":-26.575,\"y\":1.6185,\"z\":-0.1012},\"rot\":{\"x\":359.9201,\"y\":269.9947,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":45,\"z\":0}},\"af4e73\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"bf5d39\":{\"lock\":false,\"pos\":{\"x\":-5.9411,\"y\":1.5569,\"z\":-25.3389},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}},\"cb2e63\":{\"lock\":false,\"pos\":{\"x\":-23.6775,\"y\":1.689,\"z\":-0.0357},\"rot\":{\"x\":359.92,\"y\":270.3729,\"z\":180.0163}},\"ec7a73\":{\"lock\":false,\"pos\":{\"x\":-4.9066,\"y\":1.684,\"z\":-14.5418},\"rot\":{\"x\":359.9195,\"y\":270.04,\"z\":0.0161}},\"edcae4\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6934,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0021,\"z\":0.0169}},\"f305a2\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6535,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9978,\"z\":0.0803}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "a45247",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.6952008,
"posY": 1.55831861,
"posZ": 14.2788019,
"rotX": 359.955139,
"rotY": 224.998032,
"rotZ": 0.06867219,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "The Stolen Bacillus",
"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": "908abd",
"Name": "Card",
"Transform": {
"posX": -3.54892159,
"posY": 3.55882645,
"posZ": 5.15171,
"rotX": 359.91983,
"rotY": 269.9911,
"rotZ": 4.310326,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hackney Cab",
"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": 231708,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "220f53",
"Name": "Card",
"Transform": {
"posX": -3.603438,
"posY": 3.61124873,
"posZ": 7.88654327,
"rotX": 359.919342,
"rotY": 269.9952,
"rotZ": 0.000200960509,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Bacteriologist",
"Description": "An acquaintance of Mr Wells",
"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": 231707,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "abd634",
"Name": "Card",
"Transform": {
"posX": -2.96705723,
"posY": 3.61034036,
"posZ": 7.864057,
"rotX": 359.9192,
"rotY": 269.998566,
"rotZ": 0.0152728716,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anarchist's Cab",
"Description": "'Arry 'Icks Cab",
"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": 231739,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2bec59",
"Name": "Deck",
"Transform": {
"posX": -3.11195517,
"posY": 3.61007214,
"posZ": 8.021917,
"rotX": 359.918182,
"rotY": 270.024933,
"rotZ": 0.0174046531,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Weaknesses",
"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": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
231709,
231738,
231738
],
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "df5859",
"Name": "Card",
"Transform": {
"posX": 6.28404,
"posY": 1.54521668,
"posZ": 2.92604685,
"rotX": 359.914673,
"rotY": 270.008881,
"rotZ": 0.009079859,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Streets of London",
"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": true,
"Hands": true,
"CardID": 231709,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "edd17e",
"Name": "Card",
"Transform": {
"posX": 6.33932066,
"posY": 1.685481,
"posZ": 2.62946367,
"rotX": 359.9313,
"rotY": 269.990082,
"rotZ": 0.0278723389,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blue Rain",
"Description": "Weakness",
"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": 231738,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "142ccd",
"Name": "Card",
"Transform": {
"posX": 6.227158,
"posY": 1.70356035,
"posZ": 3.00358248,
"rotX": 359.918579,
"rotY": 270.032562,
"rotZ": 359.992035,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blue Rain",
"Description": "Weakness",
"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": 231738,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "912d1d",
"Name": "Deck",
"Transform": {
"posX": -3.94584823,
"posY": 3.593338,
"posZ": 7.91502666,
"rotX": 359.919525,
"rotY": 270.033173,
"rotZ": 0.0170368943,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blue Ruin Treachery",
"Description": "The Stolen Bacillus",
"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": [
231736,
231735,
231737,
231731,
231732,
231733,
231730,
231734
],
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "81caf3",
"Name": "Card",
"Transform": {
"posX": 9.991308,
"posY": 1.53902364,
"posZ": -0.580173969,
"rotX": 359.9151,
"rotY": 269.9996,
"rotZ": 0.015095409,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brilliantly Planned",
"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": true,
"Hands": true,
"CardID": 231736,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53bf80",
"Name": "Card",
"Transform": {
"posX": 9.960255,
"posY": 1.6794939,
"posZ": -0.628136337,
"rotX": 359.922333,
"rotY": 269.999451,
"rotZ": 0.009327096,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Water Supply",
"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": true,
"Hands": true,
"CardID": 231735,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0eade2",
"Name": "Card",
"Transform": {
"posX": 9.909511,
"posY": 1.69730937,
"posZ": -0.740114748,
"rotX": 359.919,
"rotY": 269.993561,
"rotZ": 0.0215441938,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "In His Socks!",
"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": true,
"Hands": true,
"CardID": 231737,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8898a0",
"Name": "Card",
"Transform": {
"posX": 10.165947,
"posY": 1.68325973,
"posZ": -0.591561139,
"rotX": 359.921,
"rotY": 270.008575,
"rotZ": 0.02857296,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drivin' a Loonatic",
"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": true,
"Hands": true,
"CardID": 231731,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2aef7f",
"Name": "Card",
"Transform": {
"posX": 10.6930742,
"posY": 1.68056369,
"posZ": -0.787656844,
"rotX": 359.9166,
"rotY": 269.9994,
"rotZ": 0.0184340775,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Death, death, death!",
"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": true,
"Hands": true,
"CardID": 231732,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5436be",
"Name": "Card",
"Transform": {
"posX": 10.2802658,
"posY": 1.68373,
"posZ": -0.927349031,
"rotX": 359.9212,
"rotY": 270.002655,
"rotZ": 359.9857,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cab Sways",
"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": true,
"Hands": true,
"CardID": 231733,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "af19f7",
"Name": "Card",
"Transform": {
"posX": 10.8211651,
"posY": 1.68802965,
"posZ": -0.7092215,
"rotX": 359.916321,
"rotY": 270.02243,
"rotZ": 0.0186949149,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Awfulness",
"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": true,
"Hands": true,
"CardID": 231730,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a1a74f",
"Name": "Card",
"Transform": {
"posX": 10.269887,
"posY": 1.6950717,
"posZ": -0.938073039,
"rotX": 359.917755,
"rotY": 269.998383,
"rotZ": 0.0185061712,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A 'igh 'at",
"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": true,
"Hands": true,
"CardID": 231734,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e42478",
"Name": "Deck",
"Transform": {
"posX": -3.87203121,
"posY": 3.59317851,
"posZ": 7.646871,
"rotX": 359.919525,
"rotY": 269.999756,
"rotZ": 0.0170892142,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "London Streets",
"Description": "The Stolen Bacillus",
"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": [
231723,
231722,
231720,
231719,
231718,
231721,
231717,
231716
],
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "191eb8",
"Name": "Card",
"Transform": {
"posX": -2.82653141,
"posY": 1.56146836,
"posZ": 14.6197443,
"rotX": 359.920135,
"rotY": 269.9999,
"rotZ": 0.0168734286,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "London Street",
"Description": "Street",
"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": 231723,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1fc69d",
"Name": "Card",
"Transform": {
"posX": -2.83667135,
"posY": 1.56070852,
"posZ": 11.9916172,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.0168661028,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "London Street",
"Description": "Street",
"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": 231722,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f229f3",
"Name": "Card",
"Transform": {
"posX": -6.348743,
"posY": 1.56719208,
"posZ": 17.3818722,
"rotX": 359.920135,
"rotY": 270.0001,
"rotZ": 0.0168664511,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "London Street",
"Description": "Street",
"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": 231720,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a8ac4a",
"Name": "Card",
"Transform": {
"posX": -6.37617874,
"posY": 1.56639767,
"posZ": 14.5545292,
"rotX": 359.9201,
"rotY": 270.000061,
"rotZ": 0.0168709457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "London Street",
"Description": "Street",
"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": 231719,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d70c9",
"Name": "Card",
"Transform": {
"posX": -6.374902,
"posY": 1.56566393,
"posZ": 12.0684633,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168648567,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "London Street",
"Description": "Street",
"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": 231718,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "47d8aa",
"Name": "Card",
"Transform": {
"posX": -6.45583,
"posY": 1.56808865,
"posZ": 19.920126,
"rotX": 359.920135,
"rotY": 270.000183,
"rotZ": 0.01686956,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "London Street",
"Description": "Street",
"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": 231721,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a20bc",
"Name": "Card",
"Transform": {
"posX": -2.799446,
"posY": 1.55992591,
"posZ": 9.510285,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.0168699455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "London Street",
"Description": "Street",
"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": 231717,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb5d54",
"Name": "Card",
"Transform": {
"posX": -6.3264246,
"posY": 1.56485426,
"posZ": 9.548976,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.0168719161,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "London Street",
"Description": "Street",
"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": 231716,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "0e6c8c",
"Name": "Deck",
"Transform": {
"posX": -3.9277,
"posY": 1.69709766,
"posZ": 5.75710154,
"rotX": 359.919739,
"rotY": 270.000122,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter deck",
"Description": "The Stolen Bacillus",
"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": [
12119,
12119,
12118,
12118,
12117,
12117,
12117,
12120,
12120,
12120,
3752,
3752,
3752,
3751,
3751,
3751
],
"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
},
"37": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f1a34d",
"Name": "Card",
"Transform": {
"posX": 116.318008,
"posY": 1.40297079,
"posZ": 2.02551055,
"rotX": 359.987427,
"rotY": 270.046936,
"rotZ": 359.984528,
"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": 116.206024,
"posY": 1.54851818,
"posZ": 1.69081855,
"rotX": 0.453712761,
"rotY": 270.0,
"rotZ": 0.605071843,
"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": "27c05d",
"Name": "Card",
"Transform": {
"posX": 116.299973,
"posY": 1.569287,
"posZ": 1.46156657,
"rotX": 359.989929,
"rotY": 270.000061,
"rotZ": 359.987671,
"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": "c40f57",
"Name": "Card",
"Transform": {
"posX": 116.363129,
"posY": 1.55607748,
"posZ": 1.91277838,
"rotX": 359.809937,
"rotY": 270.046265,
"rotZ": 0.250917822,
"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": "aa3d47",
"Name": "Card",
"Transform": {
"posX": 116.843185,
"posY": 1.54545975,
"posZ": 1.48686087,
"rotX": 359.989929,
"rotY": 270.0,
"rotZ": 359.98764,
"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": "da8001",
"Name": "Card",
"Transform": {
"posX": 116.950279,
"posY": 1.5376091,
"posZ": 1.28928447,
"rotX": 358.786469,
"rotY": 270.025024,
"rotZ": 2.07151151,
"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": "18e09c",
"Name": "Card",
"Transform": {
"posX": 117.053131,
"posY": 1.56189775,
"posZ": 1.68414187,
"rotX": 359.987427,
"rotY": 270.047,
"rotZ": 359.984528,
"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": "e0f4c0",
"Name": "Card",
"Transform": {
"posX": 115.309677,
"posY": 1.40331125,
"posZ": 1.5845021,
"rotX": 359.987427,
"rotY": 270.0,
"rotZ": 359.984558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Evils",
"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,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 12120,
"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": "1921c5",
"Name": "Card",
"Transform": {
"posX": 115.318665,
"posY": 1.5414474,
"posZ": 1.587292,
"rotX": 359.989929,
"rotY": 270.000031,
"rotZ": 359.9876,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Evils",
"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,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 12120,
"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": "61e841",
"Name": "Card",
"Transform": {
"posX": 114.991905,
"posY": 1.59937644,
"posZ": 1.31244183,
"rotX": 1.97711754,
"rotY": 270.070251,
"rotZ": 359.990356,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Evils",
"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,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 12120,
"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": "7a814c",
"Name": "Card",
"Transform": {
"posX": 102.541641,
"posY": 1.40976667,
"posZ": -12.4745493,
"rotX": 359.981262,
"rotY": 269.998077,
"rotZ": 359.984039,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Twist of Fate",
"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,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 3752,
"SidewaysCard": false,
"CustomDeck": {
"37": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "754870",
"Name": "Card",
"Transform": {
"posX": 102.251732,
"posY": 1.54939449,
"posZ": -12.6249342,
"rotX": -0.003878043,
"rotY": 270.001038,
"rotZ": 359.993439,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Twist of Fate",
"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,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 3752,
"SidewaysCard": false,
"CustomDeck": {
"37": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f11672",
"Name": "Card",
"Transform": {
"posX": 102.516029,
"posY": 1.53537273,
"posZ": -11.9082127,
"rotX": 1.18894553,
"rotY": 269.99054,
"rotZ": 359.979553,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Twist of Fate",
"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,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 3752,
"SidewaysCard": false,
"CustomDeck": {
"37": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "85da91",
"Name": "Card",
"Transform": {
"posX": 103.125893,
"posY": 1.55867076,
"posZ": -12.2961349,
"rotX": 359.986877,
"rotY": 269.996216,
"rotZ": 359.9824,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cursed Luck",
"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,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 3751,
"SidewaysCard": false,
"CustomDeck": {
"37": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98fea7",
"Name": "Card",
"Transform": {
"posX": 103.118362,
"posY": 1.55657685,
"posZ": -11.9283237,
"rotX": 359.990021,
"rotY": 270.003235,
"rotZ": 359.99408,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cursed Luck",
"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,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 3751,
"SidewaysCard": false,
"CustomDeck": {
"37": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cbb71e",
"Name": "Card",
"Transform": {
"posX": 103.040634,
"posY": 1.5592804,
"posZ": -12.123332,
"rotX": 359.987518,
"rotY": 270.009247,
"rotZ": 359.984558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cursed Luck",
"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,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 3751,
"SidewaysCard": false,
"CustomDeck": {
"37": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "6a9431",
"Name": "Deck",
"Transform": {
"posX": -2.7247,
"posY": 1.66397727,
"posZ": 0.3733004,
"rotX": 0.01683002,
"rotY": 180.003387,
"rotZ": 0.08025895,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda deck",
"Description": "The Stolen Bacillus",
"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": true,
"DeckIDs": [
231811,
231810
],
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c96242",
"Name": "Card",
"Transform": {
"posX": 11.2658768,
"posY": 1.54323339,
"posZ": 19.4570637,
"rotX": 0.0160731971,
"rotY": 180.00351,
"rotZ": 0.0796655,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Foremost Cab",
"Description": "Agenda 2",
"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": 231811,
"SidewaysCard": true,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6df58",
"Name": "Card",
"Transform": {
"posX": 11.3257837,
"posY": 1.68378675,
"posZ": 19.5206356,
"rotX": 0.00705788331,
"rotY": 179.999344,
"rotZ": 0.07831224,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bottled Cholera",
"Description": "Agenda 1",
"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": 231810,
"SidewaysCard": true,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f305a2",
"Name": "Deck",
"Transform": {
"posX": -2.6885,
"posY": 1.65349448,
"posZ": -5.0485,
"rotX": 0.0168381315,
"rotY": 179.997772,
"rotZ": 0.08025692,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "The Stolen Bacillus",
"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": true,
"DeckIDs": [
231815,
231814,
231813,
231812
],
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "a36717",
"Name": "Card",
"Transform": {
"posX": 5.65969133,
"posY": 1.54938018,
"posZ": 14.1362839,
"rotX": 0.0107390424,
"rotY": 180.000046,
"rotZ": 0.077073954,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Very Good, Ma'am!",
"Description": "Act 4",
"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": 231815,
"SidewaysCard": true,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6b5b0",
"Name": "Card",
"Transform": {
"posX": 8.342016,
"posY": 1.54566932,
"posZ": 14.1719856,
"rotX": 0.0110853193,
"rotY": 180.000824,
"rotZ": 0.07609181,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Down the Street",
"Description": "Act 3",
"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": 231814,
"SidewaysCard": true,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cd0b63",
"Name": "Card",
"Transform": {
"posX": 10.9477558,
"posY": 1.54200077,
"posZ": 14.0700436,
"rotX": 0.01190556,
"rotY": 180.000015,
"rotZ": 0.07829742,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pockets?",
"Description": "Act 2",
"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": 231813,
"SidewaysCard": true,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2db53e",
"Name": "Card",
"Transform": {
"posX": 11.0712347,
"posY": 1.68217206,
"posZ": 14.1083288,
"rotX": 0.0177685712,
"rotY": 180.000244,
"rotZ": 0.09109935,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "In My hand?",
"Description": "Act 1",
"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": 231812,
"SidewaysCard": true,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "00dc67",
"Name": "Card",
"Transform": {
"posX": -3.95600033,
"posY": 1.655648,
"posZ": -10.4412012,
"rotX": 359.919739,
"rotY": 269.9995,
"rotZ": 0.0168413483,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "The Stolen Bacillus",
"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": 231703,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec7a73",
"Name": "Custom_Tile",
"Transform": {
"posX": -4.1848197,
"posY": 1.58295929,
"posZ": -14.8511143,
"rotX": 359.919739,
"rotY": 270.028961,
"rotZ": 0.0167977158,
"scaleX": 2.2,
"scaleY": 1.0,
"scaleZ": 2.2
},
"Nickname": "Core Difficulty",
"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 = 'Core Set'\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": "102272",
"Name": "Deck",
"Transform": {
"posX": -10.2893982,
"posY": 1.67168558,
"posZ": 2.02080083,
"rotX": 359.9201,
"rotY": 270.002319,
"rotZ": 0.0168646835,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Setup/Resolution",
"Description": "The Stolen Bacillus",
"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": [
231706,
231705,
231704,
231703,
231702,
231701,
231700
],
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "89ac1b",
"Name": "Card",
"Transform": {
"posX": -18.4238415,
"posY": 1.57836211,
"posZ": -1.44924676,
"rotX": 359.912384,
"rotY": 269.9531,
"rotZ": 0.0128032351,
"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": 231706,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "58ff5b",
"Name": "Card",
"Transform": {
"posX": -16.6809158,
"posY": 1.57668781,
"posZ": 1.82218122,
"rotX": 359.901672,
"rotY": 269.9968,
"rotZ": 0.008882863,
"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": 231705,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22a242",
"Name": "Card",
"Transform": {
"posX": -14.2496338,
"posY": 1.57436824,
"posZ": 4.58182526,
"rotX": 359.915253,
"rotY": 269.998352,
"rotZ": 0.0137420371,
"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": 231704,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "00dc67",
"Name": "Card",
"Transform": {
"posX": 12.6661015,
"posY": 1.77517867,
"posZ": 23.6994972,
"rotX": 359.938049,
"rotY": 270.000854,
"rotZ": 356.2802,
"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": 231703,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "85cca8",
"Name": "Card",
"Transform": {
"posX": 12.76847,
"posY": 1.70451176,
"posZ": 23.7886658,
"rotX": 359.9219,
"rotY": 270.036743,
"rotZ": 358.9323,
"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": 231702,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "992806",
"Name": "Card",
"Transform": {
"posX": 12.7597752,
"posY": 1.68802416,
"posZ": 24.0178356,
"rotX": 359.918884,
"rotY": 269.999969,
"rotZ": 0.01451528,
"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": 231701,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "82cbc4",
"Name": "Card",
"Transform": {
"posX": -10.4981279,
"posY": 1.82299471,
"posZ": 1.55174875,
"rotX": 359.941345,
"rotY": 270.000031,
"rotZ": 0.0220869817,
"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": 231700,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "40f354",
"Name": "Card",
"Transform": {
"posX": -17.1199989,
"posY": 1.67707777,
"posZ": -0.030000288,
"rotX": 359.9201,
"rotY": 270.000122,
"rotZ": 0.0168767963,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "High Street",
"Description": "Haverstock Hill",
"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": 231725,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.4879,
"posY": 1.61000466,
"posZ": -0.219900221,
"rotX": 359.9201,
"rotY": 269.9942,
"rotZ": 0.0169081483,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "cb2e63",
"Name": "Card",
"Transform": {
"posX": -23.6775,
"posY": 1.689043,
"posZ": -0.03569979,
"rotX": 359.919983,
"rotY": 270.372925,
"rotZ": 180.016342,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Front Door",
"Description": "The Bacteriologist's House",
"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": 231724,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "631549",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6766,
"posY": 1.61565268,
"posZ": 3.86000013,
"rotX": 359.983154,
"rotY": 0.00890091248,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "79090a",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6765,
"posY": 1.61338782,
"posZ": -3.8300004,
"rotX": 0.0168718267,
"rotY": 179.999985,
"rotZ": 0.07994098,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "82e02f",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.575,
"posY": 1.61852765,
"posZ": -0.101200275,
"rotX": 359.9201,
"rotY": 269.99472,
"rotZ": 0.01690733,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "33116d",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.119,
"posY": 1.61835182,
"posZ": -3.2752,
"rotX": 0.0445654355,
"rotY": 44.9998627,
"rotZ": 359.9316,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "edcae4",
"Name": "Deck",
"Transform": {
"posX": -30.2242,
"posY": 1.69338775,
"posZ": -0.0301004946,
"rotX": 359.9201,
"rotY": 270.0021,
"rotZ": 0.01687324,
"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": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
231726,
231727,
231728,
231729
],
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dac7e2",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.69529319,
"posZ": -0.03005521,
"rotX": 359.920624,
"rotY": 270.0023,
"rotZ": 0.0130287651,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Laboratory",
"Description": "Laboratory",
"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": 231726,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "54de25",
"Name": "Card",
"Transform": {
"posX": -30.2242126,
"posY": 1.845159,
"posZ": -0.0299992487,
"rotX": 359.910828,
"rotY": 270.000732,
"rotZ": 0.0123832142,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Laboratory",
"Description": "Laboratory",
"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": 231727,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b62323",
"Name": "Card",
"Transform": {
"posX": -30.2242432,
"posY": 1.86263621,
"posZ": -0.0300086066,
"rotX": 359.92218,
"rotY": 270.000854,
"rotZ": 0.0141057931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Laboratory",
"Description": "Laboratory",
"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": 231728,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "716aba",
"Name": "Card",
"Transform": {
"posX": -30.2242432,
"posY": 1.848991,
"posZ": -0.0300091226,
"rotX": 359.92215,
"rotY": 270.000916,
"rotZ": 0.0141727543,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Laboratory",
"Description": "Laboratory",
"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": 231729,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "af4e73",
"Name": "Card",
"Transform": {
"posX": -50.9244,
"posY": 1.72662532,
"posZ": 8.178399,
"rotX": 359.9201,
"rotY": 269.999725,
"rotZ": 0.016876705,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "The Stolen Bacillus",
"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": 231703,
"SidewaysCard": false,
"CustomDeck": {
"2317": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf5d39",
"Name": "Card",
"Transform": {
"posX": -5.941101,
"posY": 1.55686688,
"posZ": -25.3389,
"rotX": 359.920135,
"rotY": 270.000061,
"rotZ": 180.016861,
"scaleX": 4.0,
"scaleY": 1.0,
"scaleZ": 4.0
},
"Nickname": "The Stolen Bacillus",
"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": 231900,
"SidewaysCard": false,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "f11669",
"Name": "Card",
"Transform": {
"posX": -5.94108868,
"posY": 1.55686677,
"posZ": -25.33879,
"rotX": 359.920135,
"rotY": 270.000061,
"rotZ": 180.016861,
"scaleX": 4.0,
"scaleY": 1.0,
"scaleZ": 4.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": 231901,
"SidewaysCard": false,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "3a009c",
"Name": "Card",
"Transform": {
"posX": -5.94108868,
"posY": 1.55686688,
"posZ": -25.3388519,
"rotX": 359.920135,
"rotY": 270.000061,
"rotZ": 180.016861,
"scaleX": 4.0,
"scaleY": 1.0,
"scaleZ": 4.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": 231902,
"SidewaysCard": false,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "a5b5b8",
"Name": "Card",
"Transform": {
"posX": -5.94108868,
"posY": 1.55686688,
"posZ": -25.3389015,
"rotX": 359.920135,
"rotY": 270.000061,
"rotZ": 180.016861,
"scaleX": 4.0,
"scaleY": 1.0,
"scaleZ": 4.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": 231903,
"SidewaysCard": false,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "0f1bff",
"Name": "Card",
"Transform": {
"posX": -5.94108868,
"posY": 1.55686688,
"posZ": -25.3389416,
"rotX": 359.920135,
"rotY": 270.000061,
"rotZ": 180.016861,
"scaleX": 4.0,
"scaleY": 1.0,
"scaleZ": 4.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": 231904,
"SidewaysCard": false,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/",
"NumWidth": 3,
"NumHeight": 2,
"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
}
}
]
}