SCED/content/curated/en/investigators_SNC.json

2528 lines
87 KiB
JSON
Raw Normal View History

2023-06-26 04:13:37 -04:00
{
"GUID": "48b4ca",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 9.723783,
"posY": 1.2740159,
"posZ": 47.89465,
"rotX": 0.257241577,
"rotY": 270.0,
"rotZ": -5.0960125E-06,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Streets of New Capenna",
"Description": "",
"GMNotes": "fancreations/investigators_SNC.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1853807409892957080/8BAF356ADEADE6CF377438200268899C64FA420E/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n
"LuaScriptState": "{\"ml\":{\"00df29\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3082,\"z\":92.4413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1d30b7\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3022,\"z\":76.3528},\"rot\":{\"x\":0.0208,\"y\":270.0235,\"z\":0.0168}},\"24ebf7\":{\"lock\":false,\"pos\":{\"x\":45.98,\"y\":1.3049,\"z\":90.1528},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"289dcb\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3029,\"z\":74.0413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"2aaa95\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3035,\"z\":76.3413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"35fa26\":{\"lock\":false,\"pos\":{\"x\":40.9603,\"y\":1.3018,\"z\":85.5488},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"3e8f18\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3069,\"z\":87.8413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"43d9b3\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3062,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"450971\":{\"lock\":false,\"pos\":{\"x\":49.5625,\"y\":1.2995,\"z\":67.1528},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"4bf11c\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.2977,\"z\":71.7487},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"4f3c6c\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3036,\"z\":80.9528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"57acdc\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3049,\"z\":85.5528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"655321\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3024,\"z\":87.8488},\"rot\":{\"x\":0.0208,\"y\":269.9823,\"z\":0.0168}},\"6724b6\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3062,\"z\":90.1528},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"73aa68\":{\"lock\":false,\"pos\":{\"x\":40.9603,\"y\":1.3011,\"z\":83.2487},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"73bf72\":{\"lock\":false,\"pos\":{\"x\":45.9795,\"y\":1.3029,\"z\":83.2529},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"774533\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3031,\"z\":90.1488},\"rot\":{\"x\":0.0208,\"y\":269.9823,\"z\":0.0168}},\"776d45\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3015,\"z\":69.4413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"7b7c48\":{\"lock\":false,\"pos\":{\"x\":45.9795,\"y\":1.3036,\"z\":85.5528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"7e4fd8\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3008,\"z\":67.1412},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"822ea2\":{\"lock\":false,\"pos\":{\"x\":49.5628,\"y\":1.3069,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"84f3bc\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3009,\"z\":71.7528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"91b291\":{\"lock\":false,\"pos\":{\"x\":49.5628,\"y\":1.3015,\"z\":74.0528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"94d7d7\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3049,\"z\":80.9413},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"99b2e7\":{\"lock\":false,\"pos\":{\"x\":40.9603,\"y\":1.2998,\"z\":78.6487},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"9ad531\":{\"lock\":false,\"pos\":{\"x\":40.9611,\"y\":1.3038,\"z\":92.4497},\"rot\":{\"x\":0.0208,\"y\":270.0154,\"z\":0.0168}},\"9f5e6e\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.2984,\"z\":74.0487},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"9ff2b3\":{\"lock\":false,\"pos\":{\"x\":49.5628,\"y\":1.3002,\"z\":69.4528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"a0038c\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3002,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"aaf8ac\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3094,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":180.0168}},\"af9875\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3056,\"z\":87.8529},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"b6e7d4\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3056,\"z\":83.2413},\"rot\":{\"x\":0.0208,\"y\"
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f6916e",
"Name": "CardCustom",
"Transform": {
"posX": 58.3838272,
"posY": 1.31010211,
"posZ": 92.39035,
"rotX": 0.0208087731,
"rotY": 270.000061,
"rotZ": 0.0167712234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590600,
"SidewaysCard": false,
"CustomDeck": {
"5906": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416705997083/34113E190D0DB04189165B4C01C62E4B2E546DC4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706453207/0CBF14D5D062C36678F8D42F6C69A5DE2535C93E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aaf8ac",
"Name": "CardCustom",
"Transform": {
"posX": 58.3838768,
"posY": 1.30942881,
"posZ": 90.09043,
"rotX": 0.0208085049,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590600,
"SidewaysCard": false,
"CustomDeck": {
"5906": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416705997083/34113E190D0DB04189165B4C01C62E4B2E546DC4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706453207/0CBF14D5D062C36678F8D42F6C69A5DE2535C93E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "00df29",
"Name": "Card",
"Transform": {
"posX": 53.2285919,
"posY": 1.30824471,
"posZ": 92.44128,
"rotX": 0.0208084378,
"rotY": 270.0,
"rotZ": 0.0167712979,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266404,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e20a09",
"Name": "Card",
"Transform": {
"posX": 53.2288,
"posY": 1.30757153,
"posZ": 90.14128,
"rotX": 0.0208085943,
"rotY": 270.0,
"rotZ": 0.01677106,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266408,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3e8f18",
"Name": "Card",
"Transform": {
"posX": 53.2286,
"posY": 1.30689824,
"posZ": 87.8412857,
"rotX": 0.0208084844,
"rotY": 270.000031,
"rotZ": 0.016771106,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266403,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "43d9b3",
"Name": "CardCustom",
"Transform": {
"posX": 53.2285576,
"posY": 1.306225,
"posZ": 85.541214,
"rotX": 0.0208083559,
"rotY": 270.0,
"rotZ": 0.0167711955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590700,
"SidewaysCard": false,
"CustomDeck": {
"5907": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160990583502441/7A680D4DFA8C1178C36B4B3ADB8B2026E5F48815/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b6e7d4",
"Name": "Card",
"Transform": {
"posX": 53.2286034,
"posY": 1.30555177,
"posZ": 83.24128,
"rotX": 0.02080852,
"rotY": 269.999664,
"rotZ": 0.01677116,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590505,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "94d7d7",
"Name": "Card",
"Transform": {
"posX": 53.2286,
"posY": 1.30487847,
"posZ": 80.94128,
"rotX": 0.0208085757,
"rotY": 269.999542,
"rotZ": 0.01677106,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590504,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2aaa95",
"Name": "Card",
"Transform": {
"posX": 53.2285919,
"posY": 1.303532,
"posZ": 76.34127,
"rotX": 0.0208084378,
"rotY": 270.0,
"rotZ": 0.016771188,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266405,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d30b7",
"Name": "Card",
"Transform": {
"posX": 49.56288,
"posY": 1.30220413,
"posZ": 76.35283,
"rotX": 0.0208017472,
"rotY": 270.023468,
"rotZ": 0.0167797077,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266420,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91b291",
"Name": "CardCustom",
"Transform": {
"posX": 49.56284,
"posY": 1.30153084,
"posZ": 74.05277,
"rotX": 0.0208083857,
"rotY": 270.0,
"rotZ": 0.01677122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590900,
"SidewaysCard": false,
"CustomDeck": {
"5909": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160990583505311/FB83C2244500D906A99DD7254B18ED19DE996867/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "289dcb",
"Name": "Card",
"Transform": {
"posX": 53.2285957,
"posY": 1.30285883,
"posZ": 74.041275,
"rotX": 0.0208085254,
"rotY": 270.0,
"rotZ": 0.0167708918,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266417,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf0176",
"Name": "Card",
"Transform": {
"posX": 53.2285957,
"posY": 1.30218554,
"posZ": 71.74127,
"rotX": 0.020808842,
"rotY": 270.0,
"rotZ": 0.01677022,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266418,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "84f3bc",
"Name": "Card",
"Transform": {
"posX": 49.56288,
"posY": 1.30085766,
"posZ": 71.75283,
"rotX": 0.02080844,
"rotY": 270.0,
"rotZ": 0.0167712271,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266421,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ff2b3",
"Name": "CardCustom",
"Transform": {
"posX": 49.5628433,
"posY": 1.30018437,
"posZ": 69.45277,
"rotX": 0.0208085869,
"rotY": 270.0,
"rotZ": 0.0167712756,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590800,
"SidewaysCard": false,
"CustomDeck": {
"5908": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160990583503775/A47489BB2D7485D3137C83C0B0CEE0EB85D70AD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "776d45",
"Name": "Card",
"Transform": {
"posX": 53.2285919,
"posY": 1.30151224,
"posZ": 69.44127,
"rotX": 0.0208083875,
"rotY": 270.0,
"rotZ": 0.0167711172,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266412,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7e4fd8",
"Name": "Card",
"Transform": {
"posX": 53.2285957,
"posY": 1.30083907,
"posZ": 67.14116,
"rotX": 0.0208087172,
"rotY": 269.9994,
"rotZ": 0.0167709664,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590501,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "450971",
"Name": "Card",
"Transform": {
"posX": 49.5625267,
"posY": 1.299511,
"posZ": 67.1527557,
"rotX": 0.0208087619,
"rotY": 269.999268,
"rotZ": 0.0167708918,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590506,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c2b022",
"Name": "Card",
"Transform": {
"posX": 49.56288,
"posY": 1.2988379,
"posZ": 64.8527145,
"rotX": 0.0208084844,
"rotY": 269.999939,
"rotZ": 0.0167712756,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590508,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a0038c",
"Name": "Card",
"Transform": {
"posX": 53.22859,
"posY": 1.30016577,
"posZ": 64.84114,
"rotX": 0.02080872,
"rotY": 269.9995,
"rotZ": 0.0167711657,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590503,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f3c6c",
"Name": "Card",
"Transform": {
"posX": 49.56288,
"posY": 1.3035506,
"posZ": 80.9528351,
"rotX": 0.0208085626,
"rotY": 270.0,
"rotZ": 0.01677121,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590510,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f44618",
"Name": "Card",
"Transform": {
"posX": 49.56288,
"posY": 1.30422378,
"posZ": 83.25284,
"rotX": 0.020808626,
"rotY": 269.999939,
"rotZ": 0.0167711,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590509,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "57acdc",
"Name": "Card",
"Transform": {
"posX": 49.5628738,
"posY": 1.30489707,
"posZ": 85.55284,
"rotX": 0.0208085,
"rotY": 270.000031,
"rotZ": 0.0167710185,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266419,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "af9875",
"Name": "Card",
"Transform": {
"posX": 49.5628853,
"posY": 1.30557036,
"posZ": 87.85286,
"rotX": 0.0208085328,
"rotY": 269.999939,
"rotZ": 0.016771052,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266423,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6724b6",
"Name": "Card",
"Transform": {
"posX": 49.56289,
"posY": 1.30624354,
"posZ": 90.1528244,
"rotX": 0.0208085477,
"rotY": 269.999939,
"rotZ": 0.0167704429,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266422,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "822ea2",
"Name": "CardCustom",
"Transform": {
"posX": 49.56283,
"posY": 1.30691671,
"posZ": 92.45277,
"rotX": 0.0208086483,
"rotY": 270.000031,
"rotZ": 0.0167703833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 591000,
"SidewaysCard": false,
"CustomDeck": {
"5910": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160990583506336/1C2A6855477FF0CDDC9C3C28D74B59AC6846D95F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec5825",
"Name": "Card",
"Transform": {
"posX": 45.9800148,
"posY": 1.30561554,
"posZ": 92.45285,
"rotX": 0.02080869,
"rotY": 270.000031,
"rotZ": 0.0167704634,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266410,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "24ebf7",
"Name": "CardCustom",
"Transform": {
"posX": 45.9799843,
"posY": 1.30494237,
"posZ": 90.15276,
"rotX": 0.0208177343,
"rotY": 269.969177,
"rotZ": 0.0167591255,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 591100,
"SidewaysCard": false,
"CustomDeck": {
"5911": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160990583509108/7BFD2305C91B15B5AC23B8C9FF53027A44DAC355/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7b278",
"Name": "Card",
"Transform": {
"posX": 45.97949,
"posY": 1.304269,
"posZ": 87.85286,
"rotX": 0.0208087377,
"rotY": 270.000031,
"rotZ": 0.0167704225,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266409,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7b7c48",
"Name": "Card",
"Transform": {
"posX": 45.97949,
"posY": 1.30359566,
"posZ": 85.55285,
"rotX": 0.0208086036,
"rotY": 270.000031,
"rotZ": 0.0167712271,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266415,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708683831/AFE25DA7094992A2DB47A4AE465BE2C52378E599/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "73bf72",
"Name": "Card",
"Transform": {
"posX": 45.9795036,
"posY": 1.30292249,
"posZ": 83.25285,
"rotX": 0.0208087284,
"rotY": 269.999451,
"rotZ": 0.01677108,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590502,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d474aa",
"Name": "Card",
"Transform": {
"posX": 45.979496,
"posY": 1.30224919,
"posZ": 80.95284,
"rotX": 0.0208088029,
"rotY": 269.9998,
"rotZ": 0.0167710334,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590507,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ad531",
"Name": "Card",
"Transform": {
"posX": 40.9611435,
"posY": 1.303792,
"posZ": 92.44971,
"rotX": 0.02080439,
"rotY": 270.01535,
"rotZ": 0.0167759936,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590203,
"SidewaysCard": false,
"CustomDeck": {
"5902": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416705992472/C05AB0168F4276EFB91A18E33003031CFFD45689/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "774533",
"Name": "Card",
"Transform": {
"posX": 40.9602356,
"posY": 1.30311811,
"posZ": 90.14877,
"rotX": 0.0208138786,
"rotY": 269.98233,
"rotZ": 0.0167639889,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590204,
"SidewaysCard": false,
"CustomDeck": {
"5902": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416705992472/C05AB0168F4276EFB91A18E33003031CFFD45689/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "655321",
"Name": "Card",
"Transform": {
"posX": 40.960247,
"posY": 1.30244482,
"posZ": 87.84876,
"rotX": 0.020813657,
"rotY": 269.9823,
"rotZ": 0.0167644955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590202,
"SidewaysCard": false,
"CustomDeck": {
"5902": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416705992472/C05AB0168F4276EFB91A18E33003031CFFD45689/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35fa26",
"Name": "Card",
"Transform": {
"posX": 40.96026,
"posY": 1.30177164,
"posZ": 85.54876,
"rotX": 0.0208085682,
"rotY": 270.0,
"rotZ": 0.0167711079,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590408,
"SidewaysCard": false,
"CustomDeck": {
"5904": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708750281/62CCAF95691A94E03B661CBD10F9897F6B88925C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "73aa68",
"Name": "Card",
"Transform": {
"posX": 40.96025,
"posY": 1.30109835,
"posZ": 83.24875,
"rotX": 0.020808937,
"rotY": 269.9993,
"rotZ": 0.0167709384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590500,
"SidewaysCard": false,
"CustomDeck": {
"5905": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160975706448693/935DF21E91924B05C2F57212B6762526F3E28946/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc411e",
"Name": "Card",
"Transform": {
"posX": 40.960247,
"posY": 1.30042517,
"posZ": 80.9487457,
"rotX": 0.0208169669,
"rotY": 269.971741,
"rotZ": 0.0167609286,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590200,
"SidewaysCard": false,
"CustomDeck": {
"5902": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416705992472/C05AB0168F4276EFB91A18E33003031CFFD45689/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "99b2e7",
"Name": "Card",
"Transform": {
"posX": 40.9602547,
"posY": 1.29975188,
"posZ": 78.648735,
"rotX": 0.020808721,
"rotY": 270.0001,
"rotZ": 0.0167711955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590404,
"SidewaysCard": false,
"CustomDeck": {
"5904": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708750281/62CCAF95691A94E03B661CBD10F9897F6B88925C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5cc63",
"Name": "Card",
"Transform": {
"posX": 40.9602547,
"posY": 1.29907858,
"posZ": 76.3487244,
"rotX": 0.0208086651,
"rotY": 270.000244,
"rotZ": 0.0167713054,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590407,
"SidewaysCard": false,
"CustomDeck": {
"5904": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708750281/62CCAF95691A94E03B661CBD10F9897F6B88925C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9f5e6e",
"Name": "Card",
"Transform": {
"posX": 40.96024,
"posY": 1.29840541,
"posZ": 74.0487442,
"rotX": 0.0208087917,
"rotY": 269.999451,
"rotZ": 0.0167709459,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590401,
"SidewaysCard": false,
"CustomDeck": {
"5904": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708750281/62CCAF95691A94E03B661CBD10F9897F6B88925C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4bf11c",
"Name": "Card",
"Transform": {
"posX": 40.9602432,
"posY": 1.29773211,
"posZ": 71.74874,
"rotX": 0.0208088327,
"rotY": 269.999756,
"rotZ": 0.01677105,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 590406,
"SidewaysCard": false,
"CustomDeck": {
"5904": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1830160416708750281/62CCAF95691A94E03B661CBD10F9897F6B88925C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1710788709823098673/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 5,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
}