SCED/content/curated/en/investigators_rabbit_hole.json

6312 lines
210 KiB
JSON
Raw Normal View History

2023-06-26 10:13:37 +02:00
{
"GUID": "b7ff06",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 43.27,
"posY": 1.48,
"posZ": 4.80,
"rotX": 0,
"rotY": 270,
"rotZ": 0,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Rabbit Hole Expansion",
"Description": "Mint Tea Fan",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"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/1862800022614300553/046FEA88FB8D4DB6BE0AC9898149058EF32BFD0A/",
"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\":{\"02c883\":{\"lock\":false,\"pos\":{\"x\":27.1277561187744,\"y\":1.49510383605957,\"z\":1.21214985847473},\"rot\":{\"x\":-4.14149461391844E-08,\"y\":270.003662109375,\"z\":5.72798626308213E-07}},\"02fc01\":{\"lock\":false,\"pos\":{\"x\":34.4325332641602,\"y\":1.49510383605957,\"z\":10.4004344940186},\"rot\":{\"x\":-3.51651635810413E-07,\"y\":270.006134033203,\"z\":-1.37707513658825E-06}},\"04b54a\":{\"lock\":false,\"pos\":{\"x\":27.1277751922607,\"y\":1.49510383605957,\"z\":-1.08783030509949},\"rot\":{\"x\":-1.95590700968751E-07,\"y\":270.003204345703,\"z\":4.27597939278712E-07}},\"099880\":{\"lock\":false,\"pos\":{\"x\":47.0866737365723,\"y\":1.49510383605957,\"z\":33.4000701904297},\"rot\":{\"x\":-6.0487245434615E-08,\"y\":270.017944335938,\"z\":-2.57313132578929E-07}},\"0a5bc6\":{\"lock\":false,\"pos\":{\"x\":27.1277523040771,\"y\":1.49510383605957,\"z\":38.010856628418},\"rot\":{\"x\":-1.31120231117166E-07,\"y\":269.973205566406,\"z\":-2.51859148647782E-07}},\"0d6af3\":{\"lock\":false,\"pos\":{\"x\":27.1277713775635,\"y\":1.49510383605957,\"z\":10.4120464324951},\"rot\":{\"x\":-1.70637164842447E-07,\"y\":269.983764648438,\"z\":-1.10898531602288E-06}},\"10020b\":{\"lock\":false,\"pos\":{\"x\":34.4325408935547,\"y\":1.49510383605957,\"z\":33.4004364013672},\"rot\":{\"x\":2.94697488634199E-10,\"y\":270.020141601563,\"z\":-4.76610694022384E-07}},\"19633b\":{\"lock\":false,\"pos\":{\"x\":52.2421760559082,\"y\":1.49510383605957,\"z\":-1.15047526359558},\"rot\":{\"x\":-2.02476357458181E-07,\"y\":270.003356933594,\"z\":-1.42171018069348E-06}},\"1dae6f\":{\"lock\":false,\"pos\":{\"x\":43.4209594726563,\"y\":1.49510383605957,\"z\":-1.08824229240417},\"rot\":{\"x\":-1.29027569073514E-07,\"y\":270.003356933594,\"z\":-1.19638616524753E-06}},\"1f94f7\":{\"lock\":false,\"pos\":{\"x\":47.0866928100586,\"y\":1.49510383605957,\"z\":38.0000686645508},\"rot\":{\"x\":-8.62802025380915E-08,\"y\":270.008422851563,\"z\":-3.10692087168718E-07}},\"267a1b\":{\"lock\":false,\"pos\":{\"x\":47.0866889953613,\"y\":1.49510383605957,\"z\":15.0002040863037},\"rot\":{\"x\":-1.26414967382971E-08,\"y\":270.005828857422,\"z\":-1.78239517367729E-07}},\"268843\":{\"lock\":false,\"pos\":{\"x\":80.106575012207,\"y\":1.16996228694916,\"z\":-31.0283088684082},\"rot\":{\"x\":-3.25647124554962E-05,\"y\":270.003326416016,\"z\":-4.41103082948757E-07}},\"269ab3\":{\"lock\":false,\"pos\":{\"x\":23.4825420379639,\"y\":1.49510383605957,\"z\":17.3119640350342},\"rot\":{\"x\":-1.35618094532219E-07,\"y\":270.006072998047,\"z\":-1.57821511947986E-06}},\"2be496\":{\"lock\":false,\"pos\":{\"x\":43.4209594726563,\"y\":1.49510383605957,\"z\":19.6117534637451},\"rot\":{\"x\":-4.45780194979761E-08,\"y\":270.005859375,\"z\":-3.12673137159436E-07}},\"2cb6e7\":{\"lock\":false,\"pos\":{\"x\":27.11208152771,\"y\":1.49510383605957,\"z\":-3.37727427482605},\"rot\":{\"x\":-1.83306610779255E-07,\"y\":270.004028320313,\"z\":-1.65376332006417E-06}},\"2f3aba\":{\"lock\":false,\"pos\":{\"x\":27.1277523040771,\"y\":1.49510383605957,\"z\":8.11211204528809},\"rot\":{\"x\":-3.95111356965572E-07,\"y\":270.006164550781,\"z\":-4.46490787453513E-07}},\"337650\":{\"lock\":false,\"pos\":{\"x\":43.4209594726563,\"y\":1.49510383605957,\"z\":1.21176064014435},\"rot\":{\"x\":1.98981069843285E-07,\"y\":270.003173828125,\"z\":-6.27183283086197E-07}},\"33eb6e\":{\"lock\":false,\"pos\":{\"x\":43.420955657959,\"y\":1.49510383605957,\"z\":35.7116012573242},\"rot\":{\"x\":-1.25642216630695E-08,\"y\":270.007263183594,\"z\":-3.49934651922013E-07}},\"340ad1\":{\"lock\":false,\"pos\":{\"x\":43.420955657959,\"y\":1.49510383605957,\"z\":38.0116271972656},\"rot\":{\"x\":-1.63163605293448E-07,\"y\":270.006958007813,\"z\":-4.23588659259622E-07}},\"349045\":{\"lock\":false,\"pos\":{\"x\":23.4825458526611,\"y\":1.49510383605957,\"z\":8.11192893981934},\"rot\":{\"x\":-9.1995076445528E-08,\"y\":270.00634765625,\"z\":-1.3672664636033E-06}},\"3752df\":{\"lock\":false,\"pos\":{\"x\":47.0866928100586,\"y\":1.49510383605957,\"z\":5.80017900466919},\"rot\":{\"x\":-5.68015785518128E-08,\"y\":270.0047
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "02c883",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277561,
"posY": 1.49510384,
"posZ": 1.21214986,
"rotX": -1.44888745E-07,
"rotY": 270.003662,
"rotZ": 5.11338065E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Meat Cleaver (2)",
"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": 604300,
"SidewaysCard": false,
"CustomDeck": {
"6043": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613935601/B372333140FAC540C9543AF5051103F6A941DD7C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "02fc01",
"Name": "CardCustom",
"Transform": {
"posX": 34.4325333,
"posY": 1.49510384,
"posZ": 10.4004345,
"rotX": -6.133022E-08,
"rotY": 270.0061,
"rotZ": -3.95373036E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Astronomical Atlas (1)",
"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": 611600,
"SidewaysCard": false,
"CustomDeck": {
"6116": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614101617/24C5D874B85C25DC55E0B504BCB0EB76CDBF6F74/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "04b54a",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277752,
"posY": 1.49510384,
"posZ": -1.08783031,
"rotX": 2.50056644E-07,
"rotY": 270.0032,
"rotZ": 1.755076E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Keyring (2)",
"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": 604600,
"SidewaysCard": false,
"CustomDeck": {
"6046": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613937684/E30C0122830910B7A3028DAA76CBA5F6E14D8090/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "099880",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866737,
"posY": 1.49510384,
"posZ": 33.40007,
"rotX": -1.05166777E-07,
"rotY": 270.017944,
"rotZ": 3.15948547E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ambush (3)",
"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": 606900,
"SidewaysCard": false,
"CustomDeck": {
"6069": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613980597/1465CFBC958BDF7507624AC951028FD8DC6035CD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0a5bc6",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277523,
"posY": 1.49510384,
"posZ": 38.0108566,
"rotX": -2.07763222E-07,
"rotY": 269.9732,
"rotZ": -4.48473045E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Book of Psalms (2)",
"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": 605100,
"SidewaysCard": false,
"CustomDeck": {
"6051": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613963609/96217A404466B74777813096D6B4AE2F5F8B78FC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0d6af3",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277714,
"posY": 1.49510384,
"posZ": 10.4120464,
"rotX": -1.27484441E-07,
"rotY": 269.983765,
"rotZ": -2.43027216E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Olive McBride (3)",
"Description": "Will Try Anything Once",
"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": 612500,
"SidewaysCard": false,
"CustomDeck": {
"6125": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614109530/7BD98422AB98166BC4BFD258754FAEC50112DF75/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "10020b",
"Name": "CardCustom",
"Transform": {
"posX": 34.43254,
"posY": 1.49510384,
"posZ": 33.4004364,
"rotX": 1.13938562E-07,
"rotY": 270.020142,
"rotZ": -3.216248E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Painkillers (1)",
"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": 606100,
"SidewaysCard": false,
"CustomDeck": {
"6061": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613972564/FDFB91E74A2BF75705821988DB2E4512F5B10784/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "19633b",
"Name": "CardCustom",
"Transform": {
"posX": 52.2421761,
"posY": 1.49510384,
"posZ": -1.15047526,
"rotX": -5.654263E-09,
"rotY": 270.003357,
"rotZ": -2.91820925E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Predestined (3)",
"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": 604700,
"SidewaysCard": false,
"CustomDeck": {
"6047": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613938423/F30A820BC080DD25E8F30F94AB68557348F6ED47/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1dae6f",
"Name": "CardCustom",
"Transform": {
"posX": 43.42096,
"posY": 1.49510384,
"posZ": -1.08824229,
"rotX": 2.84412653E-08,
"rotY": 270.003357,
"rotZ": -1.78439322E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Chance Encounter (3)",
"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": 613300,
"SidewaysCard": false,
"CustomDeck": {
"6133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616783667/07E5F4FB9F07BF179004B8101EBC822D744C992E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1f94f7",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866928,
"posY": 1.49510384,
"posZ": 38.00007,
"rotX": 2.34256376E-07,
"rotY": 270.008423,
"rotZ": -1.74573955E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Aid (2)",
"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": 605300,
"SidewaysCard": false,
"CustomDeck": {
"6053": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613965647/1F8C9CBA5224D4599188FC74AE19B1B501C1858C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "267a1b",
"Name": "CardCustom",
"Transform": {
"posX": 47.08669,
"posY": 1.49510384,
"posZ": 15.0002041,
"rotX": 2.08038138E-08,
"rotY": 270.005829,
"rotZ": -1.09284372E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Breaking and Entering (3)",
"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": 609400,
"SidewaysCard": false,
"CustomDeck": {
"6094": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614051217/07AA27BFF2B2C69A07B62F2BAF984A58030D2545/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "268843",
"Name": "Custom_Model",
"Transform": {
"posX": 80.106575,
"posY": 1.16996253,
"posZ": -31.0283184,
"rotX": 3.97179122E-07,
"rotY": 270.003662,
"rotZ": 6.417276E-07,
"scaleX": 0.250000358,
"scaleY": 0.250000358,
"scaleZ": 0.250000358
},
"Nickname": "Rabbit Hole Data Helper",
"Description": "Include this for spawning the correct tokens for Rabbit Hole Expansion",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.09555679,
"g": 0.8066202,
"b": 0.172213942
},
"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,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"Convex": true,
"MaterialIndex": 2,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 0.7222887,
"g": 0.507659256,
"b": 0.339915335
},
"SpecularIntensity": 0.4,
"SpecularSharpness": 7.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for <LOCATION_NAME>_<GUID> and if\r\nwe find nothing we look for <LOCATION_NAME>\r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"San Francisco\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"\tArkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"\tLondon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rome\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Istanbul\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tokyo_123abc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tokyo_456efg\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Tokyo\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Shanghai_123\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"front\"},\r\n \"Sydney\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\r\n \"Ambush (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Book of Psalms (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Extra Ammunition (4)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"M1918 BAR (5)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 8\r\n},\r\n \"Mk 1 Grenades (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n},\n \"Painkillers (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\n \".35 Winchester (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 5\r\n},\r\n \"Venturer (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Archaic Glyphs (3):Eldtown Shards\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Cryptographic Cipher (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Farsight (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n},\r\n \"Fingerprint Kit (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \".25 Automatic (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Fence (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n},\r\n \"Forbidden Knowledge (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Grimm's Fairy Tale (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Old Keyring (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Stray Cat (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 9\r\n},\r\n \"Baseball Bat (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n}\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "269ab3",
"Name": "CardCustom",
"Transform": {
"posX": 23.482542,
"posY": 1.49510384,
"posZ": 17.311964,
"rotX": -1.03071987E-08,
"rotY": 270.006073,
"rotZ": -4.012655E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Skeleton Key (4)",
"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": 610900,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614064724/276C19375C2048C986682DA1DC5905F2E8A1C9F2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2be496",
"Name": "CardCustom",
"Transform": {
"posX": 43.42096,
"posY": 1.49510384,
"posZ": 19.6117535,
"rotX": -1.05909947E-08,
"rotY": 270.005859,
"rotZ": 2.0210825E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cheat Death (3)",
"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": 609600,
"SidewaysCard": false,
"CustomDeck": {
"6096": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614053542/3CD00F33296F95F732DF38B0F2B9B66F0D198923/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2cb6e7",
"Name": "CardCustom",
"Transform": {
"posX": 27.1120815,
"posY": 1.49510384,
"posZ": -3.37727427,
"rotX": -5.24535828E-08,
"rotY": 270.004028,
"rotZ": -3.992247E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stray Cat (3)",
"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": 604800,
"SidewaysCard": false,
"CustomDeck": {
"6048": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613939355/293C53CE51A19FD9E04F6BB717DAA1AB04F58391/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2f3aba",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277523,
"posY": 1.49510384,
"posZ": 8.112112,
"rotX": -8.460765E-07,
"rotY": 270.006165,
"rotZ": -5.30325E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spirit Athame (3)",
"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": 613900,
"SidewaysCard": false,
"CustomDeck": {
"6139": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616803599/40C5789DB48A1C637A3B8FD480B1113A70A2689A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "337650",
"Name": "CardCustom",
"Transform": {
"posX": 43.42096,
"posY": 1.49510384,
"posZ": 1.21176064,
"rotX": -2.86743553E-08,
"rotY": 270.003174,
"rotZ": -9.673729E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Keep Faith (2)",
"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": 603900,
"SidewaysCard": false,
"CustomDeck": {
"6039": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613932363/7A3DACFD598E408D45EF5A933CF54D22DA74B738/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33eb6e",
"Name": "CardCustom",
"Transform": {
"posX": 43.4209557,
"posY": 1.49510384,
"posZ": 35.7116,
"rotX": 4.24811546E-08,
"rotY": 270.007263,
"rotZ": -2.102624E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Extra Ammunition (4)",
"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": 605400,
"SidewaysCard": false,
"CustomDeck": {
"6054": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613966412/9EBECA346422AFF8DC9856F12DB759337BD5A16D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "340ad1",
"Name": "CardCustom",
"Transform": {
"posX": 43.4209557,
"posY": 1.49510384,
"posZ": 38.0116272,
"rotX": -6.35948751E-08,
"rotY": 270.006958,
"rotZ": -9.02672E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Galvanize (3)",
"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": 605500,
"SidewaysCard": false,
"CustomDeck": {
"6055": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613967359/B4215942772E12A062BDD650281EA92B477222C0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "349045",
"Name": "CardCustom",
"Transform": {
"posX": 23.4825459,
"posY": 1.49510384,
"posZ": 8.111929,
"rotX": -9.068424E-07,
"rotY": 270.006348,
"rotZ": -5.283794E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nkosi Mabati (5)",
"Description": "Enigmatic Warlock",
"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": 612400,
"SidewaysCard": false,
"CustomDeck": {
"6124": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614108733/9AD7813204EC336FFDF3AF94F808254337D54C98/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3752df",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866928,
"posY": 1.49510384,
"posZ": 5.800179,
"rotX": -1.326791E-07,
"rotY": 270.0048,
"rotZ": 1.82165749E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Uncage the Soul (2)",
"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": 613200,
"SidewaysCard": false,
"CustomDeck": {
"6132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614116234/2161164B79C8CE165C64D0E0322B0E6F68D9A460/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3d228c",
"Name": "CardCustom",
"Transform": {
"posX": 34.43258,
"posY": 1.49510384,
"posZ": -1.09947264,
"rotX": 3.974476E-08,
"rotY": 270.0033,
"rotZ": -4.64161E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Knife (1)",
"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": 604000,
"SidewaysCard": false,
"CustomDeck": {
"6040": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613933089/F5FE6A4E136DA899B4305E1A63049224D9096D41/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3d5eba",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277714,
"posY": 1.49510384,
"posZ": 15.0121593,
"rotX": -7.47481153E-08,
"rotY": 269.995178,
"rotZ": -3.82009944E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Priest of Two-Faiths (3)",
"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": 610800,
"SidewaysCard": false,
"CustomDeck": {
"6108": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614063779/C019C3FDFDE4A780B037F6D3040F0EAA17D4FC7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3e7287",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277714,
"posY": 1.49510384,
"posZ": 17.3121624,
"rotX": 5.36450173E-09,
"rotY": 269.9887,
"rotZ": -4.37434522E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fence (3)",
"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": 611300,
"SidewaysCard": false,
"CustomDeck": {
"6113": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614067913/2AED561FB749EC9F317B03C2B121CA64807BF21A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3f0180",
"Name": "CardCustom",
"Transform": {
"posX": 23.482523,
"posY": 1.49510384,
"posZ": 35.7107849,
"rotX": -1.55471454E-07,
"rotY": 269.999725,
"rotZ": -1.63006092E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Something Worth Fighting For (3)",
"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": 616200,
"SidewaysCard": false,
"CustomDeck": {
"6162": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1841412363650088739/22681755B74FF15838B5A399E485AEA6647102E7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "412cf1",
"Name": "CardCustom",
"Transform": {
"posX": 43.42096,
"posY": 1.49510384,
"posZ": 24.2116222,
"rotX": -1.14262548E-07,
"rotY": 269.9897,
"rotZ": 1.89000353E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Practice Makes Perfect (4)",
"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": 608400,
"SidewaysCard": false,
"CustomDeck": {
"6084": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613994225/DBEAEEF5BD5A5A65535B2FBB67C685A2F514C005/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "41ee84",
"Name": "CardCustom",
"Transform": {
"posX": 30.7668247,
"posY": 1.49510384,
"posZ": 5.81214952,
"rotX": 2.65758882E-09,
"rotY": 270.0067,
"rotZ": -1.90755244E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arcane Research (3)",
"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": 613400,
"SidewaysCard": false,
"CustomDeck": {
"6134": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614117928/4965BC0ECF5B458CEC865546C36FE10FE6075F15/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "43ad41",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866051,
"posY": 1.49510384,
"posZ": 1.200187,
"rotX": 4.85713958E-09,
"rotY": 270.003571,
"rotZ": -3.25884059E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nothing Left to Lose (0)",
"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": 604500,
"SidewaysCard": false,
"CustomDeck": {
"6045": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613937044/9EAEFFBF1495A02082823EDE95F9A4EDA98990A6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "43c2c3",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866928,
"posY": 1.49510384,
"posZ": 19.6002178,
"rotX": -2.607777E-07,
"rotY": 270.00592,
"rotZ": -1.88950224E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Faustian Bargain (2)",
"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": 609800,
"SidewaysCard": false,
"CustomDeck": {
"6098": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614055041/D97D78AEDCB06FC9D7BC774E1644C2F91C5E5BAC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "459f81",
"Name": "CardCustom",
"Transform": {
"posX": 39.7819366,
"posY": 1.49510384,
"posZ": 10.4116955,
"rotX": -1.24507773E-08,
"rotY": 270.006439,
"rotZ": -5.272055E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Storm of Spirits (5)",
"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": 613100,
"SidewaysCard": false,
"CustomDeck": {
"6131": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614115170/E988D5C9ABCC868DA6CD7D8CFE1ABAE11EFB2710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4634ae",
"Name": "CardCustom",
"Transform": {
"posX": 34.4167442,
"posY": 1.49510384,
"posZ": -3.38893962,
"rotX": 3.361286E-07,
"rotY": 270.0032,
"rotZ": 2.72895289E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Baseball Bat (2)",
"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": 603300,
"SidewaysCard": false,
"CustomDeck": {
"6033": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613926883/2ACAF9F33B498BB68053228D6870B00A5E282699/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "465927",
"Name": "CardCustom",
"Transform": {
"posX": 43.42098,
"posY": 1.49510384,
"posZ": 26.5116367,
"rotX": -2.4092293E-07,
"rotY": 270.0058,
"rotZ": 1.68215976E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Connect the Dots (4)",
"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": 607600,
"SidewaysCard": false,
"CustomDeck": {
"6076": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613986581/12BA11606944424D0AA5E64581B1259040DBEBD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "473c08",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866928,
"posY": 1.49510384,
"posZ": 8.10018,
"rotX": -1.83139875E-07,
"rotY": 270.005859,
"rotZ": -1.27774229E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spectral Razor (2)",
"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": 614000,
"SidewaysCard": false,
"CustomDeck": {
"6140": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616804941/9ABBAEBC8F9121B9B5B6B1DAF832D60105830CE7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "48009b",
"Name": "CardCustom",
"Transform": {
"posX": 39.7819366,
"posY": 1.49510384,
"posZ": -1.08817363,
"rotX": -2.033629E-07,
"rotY": 270.0031,
"rotZ": -2.270413E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fight or Flight (4)",
"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": 603500,
"SidewaysCard": false,
"CustomDeck": {
"6035": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613928419/9E5AF56A8FF3A11C0535E063EDACBE51C1685045/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "487284",
"Name": "CardCustom",
"Transform": {
"posX": 30.7511177,
"posY": 1.49510384,
"posZ": -3.377335,
"rotX": 5.080576E-08,
"rotY": 270.003,
"rotZ": -1.53374131E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mariner's Compass (2)",
"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": 604200,
"SidewaysCard": false,
"CustomDeck": {
"6042": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613934868/E085725E8BB484E9E659D8217F3430E8052DBD6B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b6428",
"Name": "CardCustom",
"Transform": {
"posX": 52.2421341,
"posY": 1.49510384,
"posZ": 19.54959,
"rotX": -2.75232026E-07,
"rotY": 270.0058,
"rotZ": -1.0564866E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daredevil (3)",
"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": 609700,
"SidewaysCard": false,
"CustomDeck": {
"6097": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614054330/992E95155B1D431D178B32091B5D540AF2955075/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4c0584",
"Name": "CardCustom",
"Transform": {
"posX": 27.3436451,
"posY": 1.49510384,
"posZ": -7.743377,
"rotX": -1.59182633E-07,
"rotY": 269.9759,
"rotZ": -3.73382932E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pack Leader (2)",
"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": 614800,
"SidewaysCard": false,
"CustomDeck": {
"6148": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616900383/1530BA1DF588E43C1E64A1BB01CC5D23A4559876/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d182c",
"Name": "CardCustom",
"Transform": {
"posX": 52.24204,
"posY": 1.49510384,
"posZ": 1.149543,
"rotX": -1.59279423E-07,
"rotY": 270.002777,
"rotZ": 3.40717818E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Not without a fight!\" (3)",
"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": 604400,
"SidewaysCard": false,
"CustomDeck": {
"6044": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613936234/E990E717AF762850706656FEA05804C2D2F365CA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4d5596",
"Name": "CardCustom",
"Transform": {
"posX": 52.2421379,
"posY": 1.49510384,
"posZ": 10.3494473,
"rotX": 1.00116914E-07,
"rotY": 270.004761,
"rotZ": -4.923894E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seal of the Elder Sign (0)",
"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": 612800,
"SidewaysCard": false,
"CustomDeck": {
"6128": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614112425/83356BDE68200FD21DFED83A3BA57DC84AD63E8A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f1c7e",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277714,
"posY": 1.49510384,
"posZ": 19.6121655,
"rotX": -4.097193E-08,
"rotY": 270.0061,
"rotZ": -2.89315267E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cat Burglar (3)",
"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": 609500,
"SidewaysCard": false,
"CustomDeck": {
"6095": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614052439/74AB4DC98E0E82F15293C481BE8C17C42DF59C2B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5cbb02",
"Name": "CardCustom",
"Transform": {
"posX": 52.24215,
"posY": 1.49510384,
"posZ": 28.7494488,
"rotX": 3.790387E-08,
"rotY": 270.005554,
"rotZ": -1.231039E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Eye of Truth (2)",
"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": 608700,
"SidewaysCard": false,
"CustomDeck": {
"6087": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613997211/93F2DBB30C8B98BBE974008B27BC2019204EC380/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ccbc7",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277523,
"posY": 1.49510384,
"posZ": 26.51208,
"rotX": -7.68340342E-08,
"rotY": 270.005981,
"rotZ": -2.761507E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Archaic Glyphs (3)",
"Description": "Eltdown Shards",
"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": 613600,
"SidewaysCard": false,
"CustomDeck": {
"6136": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616792927/9AFEFB6B482993213D37E14938F41F0476CEA001/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5db5fb",
"Name": "CardCustom",
"Transform": {
"posX": 52.2421379,
"posY": 1.49510384,
"posZ": 37.94944,
"rotX": 1.40680669E-07,
"rotY": 269.99234,
"rotZ": -7.109315E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Inspiring Presence (2)",
"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": 616000,
"SidewaysCard": false,
"CustomDeck": {
"6160": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022620942907/0954CD38AC8DDDC88EDC802346BAB9DF05AC390D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ff300",
"Name": "CardCustom",
"Transform": {
"posX": 39.7819366,
"posY": 1.49510384,
"posZ": 1.21182179,
"rotX": 2.35688319E-07,
"rotY": 270.002838,
"rotZ": 4.67822669E-09,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Waylay (3)",
"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": 604900,
"SidewaysCard": false,
"CustomDeck": {
"6049": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613940082/EBB45E913CDE11A38529A8B4338E12CAD7405B3F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "639ceb",
"Name": "CardCustom",
"Transform": {
"posX": 30.7668056,
"posY": 1.49510384,
"posZ": 8.112082,
"rotX": -2.01343013E-07,
"rotY": 270.005432,
"rotZ": -1.22002945E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alyssa Graham (3)",
"Description": "Speaker to the Dead",
"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": 614100,
"SidewaysCard": false,
"CustomDeck": {
"6141": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614117138/E31ACF60433DA485685E4EBC3CDEEC9311C3C8B1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "68fe73",
"Name": "CardCustom",
"Transform": {
"posX": 43.42096,
"posY": 1.49510384,
"posZ": 17.31175,
"rotX": 2.37421744E-07,
"rotY": 270.005981,
"rotZ": -5.53576342E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Followed (3)",
"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": 610000,
"SidewaysCard": false,
"CustomDeck": {
"6100": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614056930/7ED46A26AD8A2D3924175DCBEFD8575C22847D8B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6bbf22",
"Name": "CardCustom",
"Transform": {
"posX": 34.43252,
"posY": 1.49510384,
"posZ": 17.30055,
"rotX": 6.689169E-08,
"rotY": 270.006042,
"rotZ": -1.16226753E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leather Jacket (1)",
"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": 610300,
"SidewaysCard": false,
"CustomDeck": {
"6103": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614059847/55696AD278437E6B16788EE75F96568078A08396/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "70235c",
"Name": "CardCustom",
"Transform": {
"posX": 23.48254,
"posY": 1.49510384,
"posZ": 33.4107971,
"rotX": -3.602139E-08,
"rotY": 270.010925,
"rotZ": -2.11820375E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "M1918 BAR (5)",
"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": 605900,
"SidewaysCard": false,
"CustomDeck": {
"6059": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613970671/E11709AD02940EBC9A5471246995248B81BCFBB3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "75f24b",
"Name": "CardCustom",
"Transform": {
"posX": 52.2421379,
"posY": 1.49510384,
"posZ": 35.6494522,
"rotX": -8.627231E-08,
"rotY": 270.007874,
"rotZ": -1.069309E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Intrepid (2)",
"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": 605800,
"SidewaysCard": false,
"CustomDeck": {
"6058": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613969719/296ECB838C6DD3AFF9E12E4B6E2DB2FB76186F96/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "788f24",
"Name": "CardCustom",
"Transform": {
"posX": 34.43243,
"posY": 1.49510384,
"posZ": 1.20052266,
"rotX": -1.47042158E-07,
"rotY": 270.002777,
"rotZ": -1.18456107E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fire Axe (1)",
"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": 603600,
"SidewaysCard": false,
"CustomDeck": {
"6036": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613929951/D1487B26411998647DEFF6D27FF8E12F8ECB14C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7cb35b",
"Name": "CardCustom",
"Transform": {
"posX": 34.432518,
"posY": 1.49510384,
"posZ": 5.8005147,
"rotX": 7.741619E-08,
"rotY": 270.006653,
"rotZ": -5.99311036E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forbidden Knowledge (1)",
"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": 612300,
"SidewaysCard": false,
"CustomDeck": {
"6123": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614107799/6625D0B9538CDAF2B6627F37EAB8DC1D805BE57C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7d5da5",
"Name": "CardCustom",
"Transform": {
"posX": 30.7668228,
"posY": 1.49510384,
"posZ": 10.4120159,
"rotX": -1.4905433E-07,
"rotY": 270.0063,
"rotZ": -5.089651E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scroll of Prophecies (2)",
"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": 612700,
"SidewaysCard": false,
"CustomDeck": {
"6127": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614111372/41834E1619BF032F544BA4D7AE53DDA2C438D964/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7ea4af",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277676,
"posY": 1.49510384,
"posZ": 35.71087,
"rotX": -7.295317E-08,
"rotY": 269.990662,
"rotZ": -3.46034454E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Relentless (2)",
"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": 606500,
"SidewaysCard": false,
"CustomDeck": {
"6065": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613976146/0E424D26FE5422687CD262CC46D1CA33E01C826A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f2a9e",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277523,
"posY": 1.49510384,
"posZ": 33.41086,
"rotX": -9.20840151E-08,
"rotY": 270.007751,
"rotZ": -2.18885035E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tetsuo Mori (2)",
"Description": "Too Noble for His Own Good",
"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": 606700,
"SidewaysCard": false,
"CustomDeck": {
"6067": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613978033/BCFE099D6042CEA9D95EBEC906D7C5E77EBEF538/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7fd726",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866928,
"posY": 1.49510384,
"posZ": 26.5000744,
"rotX": -2.27144071E-07,
"rotY": 270.005737,
"rotZ": -2.98003357E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deep Knowledge (2)",
"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": 607800,
"SidewaysCard": false,
"CustomDeck": {
"6078": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613988221/A72A178F04EFE4623FAA84677502F6549111B817/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "886a80",
"Name": "CardCustom",
"Transform": {
"posX": 34.4325371,
"posY": 1.49510384,
"posZ": 8.100531,
"rotX": 4.03707247E-07,
"rotY": 270.006165,
"rotZ": 1.15952571E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Familiar Spirit (1)",
"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": 612200,
"SidewaysCard": false,
"CustomDeck": {
"6122": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614598543/D36D53FB820AB9D63D34D923302150824D1B24DA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b4374",
"Name": "CardCustom",
"Transform": {
"posX": 30.7668247,
"posY": 1.49510384,
"posZ": 15.0121212,
"rotX": -4.44591564E-08,
"rotY": 270.011353,
"rotZ": -3.97966545E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".25 Automatic (3)",
"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": 611400,
"SidewaysCard": false,
"CustomDeck": {
"6114": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614095948/FE393317C4075CB8F21B30AA1660078179C9C9B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b8aa1",
"Name": "CardCustom",
"Transform": {
"posX": 23.4825439,
"posY": 1.49510384,
"posZ": 15.0119534,
"rotX": -9.657093E-08,
"rotY": 270.0062,
"rotZ": -3.23959E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leo de Luca (5)",
"Description": "The Louisiana Lion",
"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": 610400,
"SidewaysCard": false,
"CustomDeck": {
"6104": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614060564/D05842831E11A16B357F23AF1AA3A4C6D2445B8B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "911810",
"Name": "CardCustom",
"Transform": {
"posX": 47.07091,
"posY": 1.49510384,
"posZ": -3.38927555,
"rotX": 1.06006333E-07,
"rotY": 270.002655,
"rotZ": -3.852399E-09,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grit Your Teeth (2)",
"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": 603800,
"SidewaysCard": false,
"CustomDeck": {
"6038": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613931536/CFEFB0B03C782738E2D9583FF57B414622DD5ADA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97fcaf",
"Name": "CardCustom",
"Transform": {
"posX": 34.4325333,
"posY": 1.49510384,
"posZ": 15.0005627,
"rotX": -5.40427827E-08,
"rotY": 270.00058,
"rotZ": -2.04447417E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Adaptable (2)",
"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": 609200,
"SidewaysCard": false,
"CustomDeck": {
"6092": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614049613/F96C22B5C154130868F6BBBEEFB968AF8BA8CF21/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98fdce",
"Name": "CardCustom",
"Transform": {
"posX": 34.4326,
"posY": 1.49510384,
"posZ": 38.00451,
"rotX": -3.28512364E-08,
"rotY": 269.987244,
"rotZ": -1.05600051E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mk 1 Grenades (0)",
"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": 606000,
"SidewaysCard": false,
"CustomDeck": {
"6060": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613971481/4D46722169829038410F7092E7649B0805BA4FBD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c599b",
"Name": "CardCustom",
"Transform": {
"posX": 23.7889118,
"posY": 1.49510384,
"posZ": -7.74339247,
"rotX": -2.67482818E-07,
"rotY": 269.985077,
"rotZ": 3.68517533E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Red-Gloved Man (2)",
"Description": "He Was Never Here",
"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": 616300,
"SidewaysCard": false,
"CustomDeck": {
"6163": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1841412363650089714/A3F164149922A3AEA0F9E3C1617A800890E41195/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9d3cb8",
"Name": "CardCustom",
"Transform": {
"posX": 34.43249,
"posY": 1.49510384,
"posZ": 35.70761,
"rotX": -2.2937849E-08,
"rotY": 270.031036,
"rotZ": -1.73939156E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Police Badge (0)",
"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": 606200,
"SidewaysCard": false,
"CustomDeck": {
"6062": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613973411/DD155F667F2363D4D56BC3C618BF6995105656EF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9d50cf",
"Name": "CardCustom",
"Transform": {
"posX": 30.76682,
"posY": 1.49510384,
"posZ": 17.3121319,
"rotX": 5.66247138E-08,
"rotY": 270.004578,
"rotZ": 9.535357E-09,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trench Knife (2)",
"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": 611000,
"SidewaysCard": false,
"CustomDeck": {
"6110": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614065528/69C396BC1200CC488DCD25146C1EA7FB609BBB48/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9f71b2",
"Name": "CardCustom",
"Transform": {
"posX": 43.4209747,
"posY": 1.49510384,
"posZ": 33.41165,
"rotX": -6.071696E-08,
"rotY": 270.020416,
"rotZ": -1.96163214E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Radiant Smite (5)",
"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": 606400,
"SidewaysCard": false,
"CustomDeck": {
"6064": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613975161/33BFCA2843F1C73AFFDCC22D75CAEC0859C0CB1D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9facb8",
"Name": "CardCustom",
"Transform": {
"posX": 43.4209824,
"posY": 1.49510384,
"posZ": 5.811791,
"rotX": -1.22140619E-07,
"rotY": 270.0061,
"rotZ": -1.8185257E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Drawn to the Flame (4)",
"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": 612000,
"SidewaysCard": false,
"CustomDeck": {
"6120": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614105014/B332D61A368DEADE21E180877FFAD778D0FD2FCA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9feaf2",
"Name": "CardCustom",
"Transform": {
"posX": 23.482542,
"posY": 1.49510384,
"posZ": 38.0107956,
"rotX": -7.165232E-08,
"rotY": 270.008148,
"rotZ": -2.11256008E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brother Xavier (3)",
"Description": "Pure of Spirit",
"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": 605200,
"SidewaysCard": false,
"CustomDeck": {
"6052": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613964931/F4AA5CC382BF09416AF87CC1AD5E866C7958E799/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a46c2b",
"Name": "CardCustom",
"Transform": {
"posX": 23.482542,
"posY": 1.49510384,
"posZ": 28.8120213,
"rotX": -4.133057E-08,
"rotY": 270.006042,
"rotZ": -3.41583274E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fingerprint Kit (3)",
"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": 613700,
"SidewaysCard": false,
"CustomDeck": {
"6137": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616798253/6B1C7D49278324E77251EB504BB91C7A89D79152/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6306e",
"Name": "CardCustom",
"Transform": {
"posX": 43.42098,
"posY": 1.49510384,
"posZ": 28.81164,
"rotX": -2.12764348E-07,
"rotY": 270.005768,
"rotZ": -2.16858229E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guidance (3)",
"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": 608200,
"SidewaysCard": false,
"CustomDeck": {
"6082": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613991829/93E2B2975AEFACB672FCAFA5CF43187C1A7A4119/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a8db40",
"Name": "CardCustom",
"Transform": {
"posX": 39.7819328,
"posY": 1.49510384,
"posZ": 28.8117428,
"rotX": -2.450979E-07,
"rotY": 270.0058,
"rotZ": 1.75117378E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gaze of Ouraxsh (5)",
"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": 608100,
"SidewaysCard": false,
"CustomDeck": {
"6081": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613991005/F40B4219EFED628E727B357FEECB8732558427B5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a9a0c8",
"Name": "CardCustom",
"Transform": {
"posX": 43.4052734,
"posY": 1.49510384,
"posZ": -3.37769413,
"rotX": -1.11906495E-07,
"rotY": 270.0026,
"rotZ": 1.46604961E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Glimmer of Hope (3)",
"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": 603200,
"SidewaysCard": false,
"CustomDeck": {
"6032": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613926061/5791DE48418C6517B2BC11A3777A810BC3656AB2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad0691",
"Name": "CardCustom",
"Transform": {
"posX": 34.4325256,
"posY": 1.49510384,
"posZ": 28.80042,
"rotX": -1.88129988E-07,
"rotY": 270.00592,
"rotZ": -2.43255926E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Farsight (0)",
"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": 607900,
"SidewaysCard": false,
"CustomDeck": {
"6079": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613988973/C55555D1B5A4C2D10CD1597A48FE736A921C9054/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad95fd",
"Name": "CardCustom",
"Transform": {
"posX": 30.7668228,
"posY": 1.49510384,
"posZ": 35.7119675,
"rotX": -2.22387058E-07,
"rotY": 269.972717,
"rotZ": 2.5517798E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Handcuffs (2)",
"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": 614200,
"SidewaysCard": false,
"CustomDeck": {
"6142": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616788168/409A9875B40E0959725E028E52050063732A0253/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b0dd94",
"Name": "CardCustom",
"Transform": {
"posX": 34.4325371,
"posY": 1.49510384,
"posZ": 24.2004223,
"rotX": -9.862964E-08,
"rotY": 269.989624,
"rotZ": -2.46203683E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dr. William T. Maleson (2)",
"Description": "Working on Something Big",
"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": 608900,
"SidewaysCard": false,
"CustomDeck": {
"6089": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613999030/D022F917CF5418FE11E9C8DD990951CEB75754F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b221a7",
"Name": "CardCustom",
"Transform": {
"posX": 23.4825268,
"posY": 1.49510384,
"posZ": 19.6119442,
"rotX": -6.42382E-08,
"rotY": 270.0061,
"rotZ": -3.81977685E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Investments (4)",
"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": 610100,
"SidewaysCard": false,
"CustomDeck": {
"6101": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614057723/61F12CF3A000D8A439F1E1744C5647FA3949A4B5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b3d984",
"Name": "CardCustom",
"Transform": {
"posX": 30.7668,
"posY": 1.49510384,
"posZ": 33.4119949,
"rotX": -4.52562645E-08,
"rotY": 270.016968,
"rotZ": 1.63071931E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": ".35 Winchester (2)",
"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": 607000,
"SidewaysCard": false,
"CustomDeck": {
"6070": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613981379/275D39C46428EDA0875B5CD22587F2E1FD93AEB2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b47adf",
"Name": "CardCustom",
"Transform": {
"posX": 52.2421379,
"posY": 1.49510384,
"posZ": 17.2495861,
"rotX": -1.817009E-07,
"rotY": 269.975739,
"rotZ": 1.05640332E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Opportunist (4)",
"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": 614300,
"SidewaysCard": false,
"CustomDeck": {
"6143": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616778543/339C10054AD6976D38AC470F0A42F7BBF04E78A6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b826dd",
"Name": "CardCustom",
"Transform": {
"posX": 43.42098,
"posY": 1.49510384,
"posZ": 15.0117626,
"rotX": -5.256658E-08,
"rotY": 270.0061,
"rotZ": -4.01641159E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Black Market (4)",
"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": 609300,
"SidewaysCard": false,
"CustomDeck": {
"6093": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614050346/3247C40FD6F3BADB4E01C336F1766BDB434490EB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bae0d4",
"Name": "CardCustom",
"Transform": {
"posX": 30.76682,
"posY": 1.49510384,
"posZ": 19.6121349,
"rotX": -1.53535815E-08,
"rotY": 270.004578,
"rotZ": -3.54118328E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Knuckleduster (2)",
"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": 614400,
"SidewaysCard": false,
"CustomDeck": {
"6144": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616776944/4B3A0D1F20F3ADB3F370801A1C2D6AC347CD2DB5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf9817",
"Name": "CardCustom",
"Transform": {
"posX": 30.7668056,
"posY": 1.49510384,
"posZ": 26.5119724,
"rotX": -8.212168E-08,
"rotY": 269.983063,
"rotZ": -4.59995277E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hawk-Eye Folding Camera (2)",
"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": 613800,
"SidewaysCard": false,
"CustomDeck": {
"6138": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616799357/E1621EC600C82762AED6FF5C1E295D1CC91F45B3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c24c0f",
"Name": "CardCustom",
"Transform": {
"posX": 20.2495937,
"posY": 1.49510384,
"posZ": -7.702461,
"rotX": 2.53606434E-08,
"rotY": 270.0211,
"rotZ": -2.09477491E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Backpack (3)",
"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": 602600,
"SidewaysCard": false,
"CustomDeck": {
"6026": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613916258/52A576F44C64F353B79EA50B42B5BAE256D1DA21/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c27ee4",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866966,
"posY": 1.49510384,
"posZ": 28.8000774,
"rotX": -9.89281048E-08,
"rotY": 269.986755,
"rotZ": -1.96049527E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Astounding Revelation (2)",
"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": 613500,
"SidewaysCard": false,
"CustomDeck": {
"6135": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616791770/51D08C4C9430F300FE24915EB2AC9F48AAEFFDD6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6629b",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866852,
"posY": 1.49510384,
"posZ": 10.4000835,
"rotX": -1.45790338E-07,
"rotY": 270.005981,
"rotZ": 2.612168E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Banish (2)",
"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": 614500,
"SidewaysCard": false,
"CustomDeck": {
"6145": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022616805998/32869FA4B7E06FA5C252C06949E880384ECD68C4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc9f3e",
"Name": "CardCustom",
"Transform": {
"posX": 47.08667,
"posY": 1.49510384,
"posZ": 24.2000637,
"rotX": -1.38925074E-07,
"rotY": 269.985657,
"rotZ": 5.58796351E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Working a Hunch (2)",
"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": 608800,
"SidewaysCard": false,
"CustomDeck": {
"6088": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613998306/87AEF09EEB8EC67A600449CA8A04D9F8CD041F07/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ccd2d7",
"Name": "CardCustom",
"Transform": {
"posX": 23.4825459,
"posY": 1.49510384,
"posZ": 26.512022,
"rotX": 4.79970375E-08,
"rotY": 269.995026,
"rotZ": -4.4449834E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Stone (4)",
"Description": "Promethean Potential",
"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": 607100,
"SidewaysCard": false,
"CustomDeck": {
"6071": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613982284/89FACC101CDF6B9500E9304275522F307B12139B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5060d",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277561,
"posY": 1.49510384,
"posZ": 5.812157,
"rotX": -5.207338E-08,
"rotY": 270.008362,
"rotZ": 9.029565E-09,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abyssal Tome (5)",
"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": 614700,
"SidewaysCard": false,
"CustomDeck": {
"6147": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022620941476/F4030E0AA0105E419995FCD84003448249AC699D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5a551",
"Name": "CardCustom",
"Transform": {
"posX": 52.2421379,
"posY": 1.49510384,
"posZ": 8.049543,
"rotX": -4.13215879E-08,
"rotY": 270.005829,
"rotZ": -3.1724565E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fearless (4)",
"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": 616100,
"SidewaysCard": false,
"CustomDeck": {
"6161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614107006/919A9D4A710FB962F28B19C6190CDB8704B24C9E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d7edae",
"Name": "Custom_Model",
"Transform": {
"posX": 80.106575,
"posY": 1.16996253,
"posZ": -31.8225689,
"rotX": 1.14233146E-07,
"rotY": 270.003845,
"rotZ": -3.821713E-07,
"scaleX": 0.250000358,
"scaleY": 0.250000358,
"scaleZ": 0.250000358
},
"Nickname": "Rabbit Hole Data Helper",
"Description": "Include this for spawning the correct tokens for Rabbit Hole Expansion",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.09555679,
"g": 0.8066202,
"b": 0.172213942
},
"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,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"Convex": true,
"MaterialIndex": 2,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 0.7222887,
"g": 0.507659256,
"b": 0.339915335
},
"SpecularIntensity": 0.4,
"SpecularSharpness": 7.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for <LOCATION_NAME>_<GUID> and if\r\nwe find nothing we look for <LOCATION_NAME>\r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"San Francisco\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"\tArkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"\tLondon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rome\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Istanbul\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tokyo_123abc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tokyo_456efg\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Tokyo\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Shanghai_123\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"front\"},\r\n \"Sydney\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\r\n \"Ambush (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Book of Psalms (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Extra Ammunition (4)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"M1918 BAR (5)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 8\r\n},\r\n \"Mk 1 Grenades (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n},\n \"Painkillers (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\n \".35 Winchester (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 5\r\n},\r\n \"Venturer (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Archaic Glyphs (3):Eldtown Shards\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Cryptographic Cipher (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Farsight (0)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n},\r\n \"Fingerprint Kit (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \".25 Automatic (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Fence (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 1\r\n},\r\n \"Forbidden Knowledge (1)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Grimm's Fairy Tale (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 4\r\n},\r\n \"Old Keyring (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n},\r\n \"Stray Cat (3)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 9\r\n},\r\n \"Baseball Bat (2)\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 2\r\n}\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d92dde",
"Name": "CardCustom",
"Transform": {
"posX": 34.43252,
"posY": 1.49510384,
"posZ": 26.5004139,
"rotX": -6.159256E-08,
"rotY": 269.992371,
"rotZ": -8.53285442E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charles Ross, Esq. (1)",
"Description": "Acquisitions and Solicitation",
"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": 607500,
"SidewaysCard": false,
"CustomDeck": {
"6075": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613985824/6CC3243400D9F5037D5E214A4D0DB7BD43545154/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dc8ab9",
"Name": "CardCustom",
"Transform": {
"posX": 23.4825268,
"posY": 1.49510384,
"posZ": 10.4118176,
"rotX": 7.47965743E-08,
"rotY": 270.006256,
"rotZ": -1.10133321E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Book of Shadows (5)",
"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": 611900,
"SidewaysCard": false,
"CustomDeck": {
"6119": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614104140/7E91B747D6A51273544DDAC9EF01BA8D1F2EC741/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd5a8d",
"Name": "CardCustom",
"Transform": {
"posX": 23.482542,
"posY": 1.49510384,
"posZ": 24.212019,
"rotX": 5.78563242E-09,
"rotY": 269.983063,
"rotZ": -4.322381E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quick Study (4)",
"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": 608500,
"SidewaysCard": false,
"CustomDeck": {
"6085": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613994993/EF858BC63921ECE2A7F650EE8AF8555C75997AA6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e10da6",
"Name": "CardCustom",
"Transform": {
"posX": 30.76681,
"posY": 1.49510384,
"posZ": -1.08788371,
"rotX": 9.561826E-08,
"rotY": 270.002625,
"rotZ": -4.470556E-09,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Madame Labranche (2)",
"Description": "Mysterious Benefactress",
"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": 604100,
"SidewaysCard": false,
"CustomDeck": {
"6041": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613934105/79C073955AE2257938218F0EECEFF04A8C406E24/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e4fc98",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277676,
"posY": 1.49510384,
"posZ": 24.2120876,
"rotX": -1.3390104E-07,
"rotY": 269.9881,
"rotZ": 1.05335971E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Celaeno Fragments (3)",
"Description": "Book of Books",
"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": 607400,
"SidewaysCard": false,
"CustomDeck": {
"6074": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613985019/1638A1A44B23E8B985CDAFACDB7178AA4C5D7039/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5bd5d",
"Name": "CardCustom",
"Transform": {
"posX": 43.4209633,
"posY": 1.49510384,
"posZ": 10.4116344,
"rotX": -5.831998E-08,
"rotY": 270.005951,
"rotZ": -7.61656338E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Open Gate (3)",
"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": 612600,
"SidewaysCard": false,
"CustomDeck": {
"6126": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614110371/5354A8D388EDA7AC68780B0F7A215E22C072975C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e618ab",
"Name": "CardCustom",
"Transform": {
"posX": 30.7668114,
"posY": 1.49510384,
"posZ": 1.21211958,
"rotX": -1.44662337E-07,
"rotY": 270.002563,
"rotZ": 5.68866376E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Grimm's Fairy Tale (2)",
"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": 603700,
"SidewaysCard": false,
"CustomDeck": {
"6037": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613930685/4331D1897D0CFCC7BA8B5D9800F369FCE24F61AE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e7c879",
"Name": "CardCustom",
"Transform": {
"posX": 43.4209633,
"posY": 1.49510384,
"posZ": 8.111723,
"rotX": -2.657658E-07,
"rotY": 270.0061,
"rotZ": 1.21328853E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bind Monster (4)",
"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": 611800,
"SidewaysCard": false,
"CustomDeck": {
"6118": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614103398/3A246E171826811A6BD472E13C966C07E31C8D37/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e969d6",
"Name": "CardCustom",
"Transform": {
"posX": 30.7668056,
"posY": 1.49510384,
"posZ": 24.2119732,
"rotX": 9.78859447E-08,
"rotY": 269.991333,
"rotZ": -1.40377E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Laboratory Assistant (2)",
"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": 609000,
"SidewaysCard": false,
"CustomDeck": {
"6090": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613999905/1AE3C6A38CA27CAED3315E9F307B30A5BFEEDE38/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed565f",
"Name": "CardCustom",
"Transform": {
"posX": 47.08671,
"posY": 1.49510384,
"posZ": -1.09985447,
"rotX": 1.73306276E-07,
"rotY": 270.0024,
"rotZ": -2.27636448E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Belly of the Beast (2)",
"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": 603400,
"SidewaysCard": false,
"CustomDeck": {
"6034": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613927742/102EEB5330192DDCE7268E7193EA255FC4855A89/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ef4d67",
"Name": "CardCustom",
"Transform": {
"posX": 27.1277523,
"posY": 1.49510384,
"posZ": 28.8120823,
"rotX": -6.867784E-08,
"rotY": 269.982971,
"rotZ": -3.69315217E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Research Librarian (2)",
"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": 608600,
"SidewaysCard": false,
"CustomDeck": {
"6086": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613996377/49DEAC0BC5A2A3BB35FE4D400C4CB496D023055C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f328e1",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866966,
"posY": 1.49510384,
"posZ": 35.700798,
"rotX": 1.00165716E-08,
"rotY": 270.004578,
"rotZ": -3.007096E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prepared for the Worst (2)",
"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": 606300,
"SidewaysCard": false,
"CustomDeck": {
"6063": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613974236/2680D342EDA4299B808A230E63352F50C4EE9F59/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f883a7",
"Name": "CardCustom",
"Transform": {
"posX": 34.43254,
"posY": 1.49510384,
"posZ": 19.6005764,
"rotX": 2.2207905E-10,
"rotY": 270.006073,
"rotZ": -4.16394471E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fine Clothes (1)",
"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": 611100,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614056018/487B46EEC7AC528CBACDA9F923881460CB31DB06/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f8e834",
"Name": "CardCustom",
"Transform": {
"posX": 30.7668056,
"posY": 1.49510384,
"posZ": 28.8119755,
"rotX": -4.55964E-08,
"rotY": 269.98,
"rotZ": 5.848264E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cryptographic Cipher (3)",
"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": 607700,
"SidewaysCard": false,
"CustomDeck": {
"6077": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613987354/29DF68BBC75BC3328237D3049D87DEBCC0B2D982/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f9302c",
"Name": "CardCustom",
"Transform": {
"posX": 34.4409752,
"posY": 1.49510384,
"posZ": -7.74337769,
"rotX": 4.18290149E-08,
"rotY": 269.9884,
"rotZ": 6.21464E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charisma (0)",
"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": 602700,
"SidewaysCard": false,
"CustomDeck": {
"6027": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613917125/9A4DEA5E925D41CCE6C6AF37F8283A2BE793B259/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f93232",
"Name": "CardCustom",
"Transform": {
"posX": 23.48253,
"posY": 1.49510384,
"posZ": 1.21195149,
"rotX": 1.74150557E-07,
"rotY": 270.003967,
"rotZ": -3.00275332E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Yaotl (3)",
"Description": "Lost Son of Eztli",
"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": 605000,
"SidewaysCard": false,
"CustomDeck": {
"6050": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613940703/932D2B4E302A060284CE977B077661911D44C12B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa6c1a",
"Name": "CardCustom",
"Transform": {
"posX": 30.89673,
"posY": 1.49510384,
"posZ": -7.73136854,
"rotX": -2.46834713E-08,
"rotY": 269.970337,
"rotZ": -2.77655E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kukri (2)",
"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": 602800,
"SidewaysCard": false,
"CustomDeck": {
"6028": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613917723/B09E0076D3A19ACED4D1BB119D6B9AEC5FF46F5D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "faed96",
"Name": "CardCustom",
"Transform": {
"posX": 30.76682,
"posY": 1.49510384,
"posZ": 38.0119934,
"rotX": 1.71848547E-09,
"rotY": 270.0077,
"rotZ": -1.06907542E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Venturer (1)",
"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": 606800,
"SidewaysCard": false,
"CustomDeck": {
"6068": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022613979012/A789CC857AC66D660A2D95A1438A417F25415E07/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fde4dd",
"Name": "CardCustom",
"Transform": {
"posX": 47.0866928,
"posY": 1.49510384,
"posZ": 17.3002148,
"rotX": -2.194629E-07,
"rotY": 270.005981,
"rotZ": -3.48457377E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Narrow Escape (2)",
"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": 610500,
"SidewaysCard": false,
"CustomDeck": {
"6105": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1862800022614061386/94A35B45383840829364E068B47726546A0AEB60/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"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
}
}
]
}