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

9993 lines
268 KiB
JSON

{
"GUID": "2e5eef",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 9.66707,
"posY": 1.27387118,
"posZ": 51.9348259,
"rotX": 0.255240321,
"rotY": 269.997345,
"rotZ": 0.0006113746,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Shadows of Arkham Player Cards",
"Description": "Shad",
"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": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1697282751257289223/D03666A291CC5705A3656865488583FF4AB762B4/",
"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": "---\n--- Generated by EmmyLua(https://github.com/EmmyLua)\n--- Created by Whimsical.\n--- DateTime: 2021-03-16 3:26 p.m.\n---\n\n--- Original Memory Bag by MrStump\n--- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080\n\n---@class MemoryListEntry\n---@field public position Vector\n---@field public rotation Vector\n---@field public lock boolean\nlocal MemoryListEntry={}\n\n---@type table<string, MemoryListEntry>\nlocal memory_list = {}\n\nlocal POSTFIX = {\n SAVE = \"_memory_object\",\n ZONE = \"_memory_zone\",\n SHUFFLE = \"_memory_shuffle\"\n}\n\n---@type table<string, any>\nlocal BUTTON = {\n POSITION = Vector(0, 0, 2.2),\n ROTATION = Vector(0, 0, 0),\n HEIGHT = 350,\n WIDTH = 800,\n FONT_SIZE = 250,\n COLOR = Color.Black,\n FONT_COLOR = Color.White\n}\n\nlocal ipairs = ipairs\nlocal pairs = pairs\n\n---@return string\nlocal function get_prefix()\n return self:getDescription()\nend\n\nlocal function updateSave()\n local data_to_save = {[\"ml\"]=memory_list}\n local saved_data = JSON.encode(data_to_save)\n self.script_state = saved_data\nend\n\n---@param label string\n---@param action string\nlocal function createButton(label, action)\n self:clearButtons()\n\n ---@type CreateClassicUIButton\n local parameters = {\n label = label,\n click_function = action,\n function_owner = self\n }\n\n for key, value in pairs(BUTTON) do\n parameters[key:lower()] = value\n end\n\n self:createButton(parameters)\nend\n\nlocal function create_place_button() createButton(\"Place\", \"place_objects\") end\nlocal function create_recall_button() createButton(\"Recall\", \"recall_objects\") end\n\n---@param tag string\n---@param lock boolean\n---@return fun(object:TTSObject)\nlocal function create_object_callback(tag, lock)\n ---@param object TTSObject\n return function (object)\n object:setLock(lock)\n if object:hasTag(tag) then object:shuffle() end\n end\nend\n\n---@param object TTSObject\nlocal function record_objects(object)\n memory_list[object:getGUID()] = {\n position = object:getPosition(),\n rotation = object:getRotation(),\n lock = object:getLock()\n }\n self:putObject(object)\nend\n\n---@param objects TTSObject[]\nlocal function update_objects(objects)\n for _, object in ipairs(objects) do\n record_objects(object)\n end\nend\n\n--Sends objects from bag/table to their saved position/rotation\nfunction place_objects()\n local prefix = get_prefix()\n local shuffle_tag = prefix .. POSTFIX.SHUFFLE\n local content = self.getObjects()\n\n for _, item in ipairs(content) do\n local entry = memory_list[item.guid]\n if entry then\n self.takeObject {\n guid=item.guid,\n position=entry.position,\n rotation=entry.rotation,\n callback_function = create_object_callback(shuffle_tag, entry.lock)\n }\n end\n end\n\n broadcastToAll(\"Objects Placed\", {1,1,1})\n create_recall_button()\nend\n\n--Recalls objects to bag from table\nfunction recall_objects()\n memory_list = {}\n local prefix = get_prefix()\n\n if prefix==\"\" then\n broadcastToAll(\"Error in Memory Bag: Tag prefix not set.\")\n return\n end\n\n local save_tag = prefix .. POSTFIX.SAVE\n local zone_tag = prefix .. POSTFIX.ZONE\n\n local zones = getObjectsWithTag(zone_tag)\n if #zones>0 then\n for _, zone in ipairs(zones) do\n update_objects(zone:getObjects())\n end\n else\n update_objects(getObjectsWithTag(save_tag))\n end\n updateSave()\n broadcastToAll(\"Objects Recalled\", {1,1,1})\n create_place_button()\nend\n\nfunction onload(saved_data)\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n --Set up information off of loaded_data\n memory_list = loaded_data.ml\n else\n --Set up information for if there is no saved saved data\n memory_list = {}\n end\n\n if self:getQuantity()==0 then\n create_recall_button()\n else\n create_place_button()\n end\nend",
"LuaScriptState": "{\"ml\":{\"0007e3\":{\"lock\":false,\"position\":{\"x\":53.2299995422363,\"y\":1.30691230297089,\"z\":85.5400009155273},\"rotation\":{\"x\":0.0199889708310366,\"y\":270,\"z\":0.0200011990964413}},\"022652\":{\"lock\":false,\"position\":{\"x\":36.6199989318848,\"y\":1.29090714454651,\"z\":-84.2099990844727},\"rotation\":{\"x\":0.0199891068041325,\"y\":270,\"z\":0.0199999772012234}},\"032236\":{\"lock\":false,\"position\":{\"x\":52.9399948120117,\"y\":1.29980862140656,\"z\":-75.0200042724609},\"rotation\":{\"x\":0.019989125430584,\"y\":270,\"z\":0.0200007408857346}},\"07d486\":{\"lock\":false,\"position\":{\"x\":-19.3082790374756,\"y\":1.30661237239838,\"z\":-84.7379150390625},\"rotation\":{\"x\":0.0199890397489071,\"y\":270,\"z\":0.0199995469301939}},\"0c634d\":{\"lock\":false,\"position\":{\"x\":53.2299957275391,\"y\":1.2980809211731,\"z\":60.2399978637695},\"rotation\":{\"x\":0.0199886690825224,\"y\":269.999969482422,\"z\":0.0199997555464506}},\"0eaae4\":{\"lock\":false,\"position\":{\"x\":58.4999008178711,\"y\":1.29502773284912,\"z\":46.2264671325684},\"rotation\":{\"x\":0.0199890807271004,\"y\":270.000061035156,\"z\":0.0199998412281275}},\"0f07ed\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.29700112342834,\"z\":-70.4200057983398},\"rotation\":{\"x\":0.0199891123920679,\"y\":270,\"z\":0.0200006570667028}},\"0f0ae6\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.31042265892029,\"z\":-49.7700004577637},\"rotation\":{\"x\":0.0199842154979706,\"y\":270.014404296875,\"z\":0.020004890859127}},\"10c0dc\":{\"lock\":false,\"position\":{\"x\":32.9900016784668,\"y\":1.29044353961945,\"z\":-81.9100036621094},\"rotation\":{\"x\":0.0199891980737448,\"y\":270.000030517578,\"z\":0.0199999585747719}},\"10f878\":{\"lock\":false,\"position\":{\"x\":40.2900047302246,\"y\":1.30021250247955,\"z\":-61.2199974060059},\"rotation\":{\"x\":0.0199812930077314,\"y\":270.021179199219,\"z\":0.020007299259305}},\"111660\":{\"lock\":false,\"position\":{\"x\":29.339994430542,\"y\":1.29398727416992,\"z\":-68.1100082397461},\"rotation\":{\"x\":0.0199895557016134,\"y\":270,\"z\":0.0200000423938036}},\"116ff0\":{\"lock\":false,\"position\":{\"x\":37.4200019836426,\"y\":1.29337513446808,\"z\":62.5600051879883},\"rotation\":{\"x\":0.0199888795614243,\"y\":270,\"z\":0.019999872893095}},\"12d4ad\":{\"lock\":false,\"position\":{\"x\":-22.6200008392334,\"y\":1.31365931034088,\"z\":-61.2400016784668},\"rotation\":{\"x\":0.0199822150170803,\"y\":270.019744873047,\"z\":0.0200065728276968}},\"1408f3\":{\"lock\":false,\"position\":{\"x\":49.2799911499023,\"y\":1.30335235595703,\"z\":-61.2100028991699},\"rotation\":{\"x\":0.0199887994676828,\"y\":270,\"z\":0.0199999623000622}},\"14bb32\":{\"lock\":false,\"position\":{\"x\":52.9300003051758,\"y\":1.29418516159058,\"z\":-91.120002746582},\"rotation\":{\"x\":0.0199892427772284,\"y\":270.000061035156,\"z\":0.0199998635798693}},\"167f1d\":{\"lock\":false,\"position\":{\"x\":-26.0351867675781,\"y\":1.34438955783844,\"z\":-59.7339744567871},\"rotation\":{\"x\":0.019975058734417,\"y\":270.040740966797,\"z\":0.0200138036161661}},\"169484\":{\"lock\":false,\"position\":{\"x\":45.9800033569336,\"y\":1.30358362197876,\"z\":83.25},\"rotation\":{\"x\":0.0199889559298754,\"y\":269.999969482422,\"z\":0.0199999026954174}},\"17937a\":{\"lock\":false,\"position\":{\"x\":49.2799949645996,\"y\":1.30254948139191,\"z\":-63.5100021362305},\"rotation\":{\"x\":0.019989175722003,\"y\":269.999969482422,\"z\":0.0200004763901234}},\"17d6e1\":{\"lock\":false,\"position\":{\"x\":58.379997253418,\"y\":1.29986011981964,\"z\":60.1899948120117},\"rotation\":{\"x\":0.0199888125061989,\"y\":270.000030517578,\"z\":0.0200000200420618}},\"180ddc\":{\"lock\":false,\"position\":{\"x\":53.2099990844727,\"y\":1.29406309127808,\"z\":48.75},\"rotation\":{\"x\":0.0199891589581966,\"y\":270,\"z\":0.0199997220188379}},\"1a9b06\":{\"lock\":false,\"position\":{\"x\":40.9599952697754,\"y\":1.2994236946106,\"z\":76.3499908447266},\"rotation\":{\"x\":0.019989375025034,\"y\":270,\"z\":0.020000709220767}},\"1b935e\":{\"lock\":false,\"position\":{\"x\":52.939998626709,\"y\":1.3070342540741,\"z\":-54.3199996948242},\"rotation\":{\"x\":0.0199891906231642,\"y\":269.999969482422,\"z\":0.0199997145682573}},\"1c6ec5\":{\"lock\":false,\"position\":{\"x\":58.379997253418,\"y\":1.29745161533356,\"z\":53.2899971008301},\"rotation\":{\"x\":0.0199887454509735,\"y\":270.000030517578,\"z\":0.0199999492615461}},\"1f504e\":{\"lock\":false,\"position\":{\"x\":49.5599975585938,\"y\":1.30001544952393,\"z\":69.4499893188477},\"rotation\":{\"x\":0.0199894160032272,\"y\":270,\"z\":0.0200007241219282}},\"2545b4\":{\"lock\":false,\"position\":{\"x\":52.939998626709,\"y\":1.30863976478577,\"z\":-49.7200050354004},\"rotation\":{\"x\":0.019988963380456,\"y\":270,\"z\":0.0200000945478678}},\"28f554\":{\"lock\":false,\"position\":{\"x\":45.9799995422363,\"y\":1.30197787284851,\"z\":78.6500015258789},\"rotation\":{\"x\":0.0199891310185194,\"y\":270.000061035156,\"z\":0.0199997238814831}},\"2bcefa\":{\"lock\":false,\"position\":{\"x\":40.9909629821777,\"y\":1.28894031047821,\"z\":46.2863883972168},\"rotation\":{\"x\":0.0199910886585712,\"y\":269.994354248047,\"z\":0.0199978519231081}},\"2c2198\":{\"lock\":false,\"position\":{\"x\":40.9599990844727,\"y\":1.29621231555939,\"z\":67.1500015258789},\"rotation\":{\"x\":0.0199893079698086,\"y\":270,\"z\":0.0199998114258051}},\"2fa8cc\":{\"lock\":false,\"position\":{\"x\":-25.9844570159912,\"y\":1.30371272563934,\"z\":-86.3724365234375},\"rotation\":{\"x\":0.0199800953269005,\"y\":270.025756835938,\"z\":0.0200088750571013}},\"3072b2\":{\"lock\":false,\"position\":{\"x\":40.9600028991699,\"y\":1.3026350736618,\"z\":85.5500030517578},\"rotation\":{\"x\":0.0199891477823257,\"y\":269.999938964844,\"z\":0.0200007110834122}},\"33920c\":{\"lock\":false,\"position\":{\"x\":40.2899971008301,\"y\":1.2953953742981,\"z\":-75.0200042724609},\"rotation\":{\"x\":0.0199892986565828,\"y\":270,\"z\":0.020000696182251}},\"33aaf7\":{\"lock\":false,\"position\":{\"x\":30.3099937438965,\"y\":1.29089117050171,\"z\":62.5499954223633},\"rotation\":{\"x\":0.0199888925999403,\"y\":270,\"z\":0.0199992936104536}},\"343d25\":{\"lock\":false,\"position\":{\"x\":37.419994354248,\"y\":1.29819214344025,\"z\":76.359992980957},\"rotation\":{\"x\":0.0199894458055496,\"y\":270,\"z\":0.0200006775557995}},\"35aca5\":{\"lock\":false,\"position\":{\"x\":37.419994354248,\"y\":1.3030092716217,\"z\":90.1599960327148},\"rotation\":{\"x\":0.0199891533702612,\"y\":270,\"z\":0.0200007874518633}},\"361151\":{\"lock\":false,\"position\":{\"x\":-19.2999992370605,\"y\":1.3175402879715,\"z\":-53.439998626709},\"rotation\":{\"x\":0.0199784878641367,\"y\":270.029998779297,\"z\":0.0200103335082531}},\"3764c1\":{\"lock\":false,\"position\":{\"x\":52.9400024414063,\"y\":1.30623137950897,\"z\":-56.6199951171875},\"rotation\":{\"x\":0.0199887212365866,\"y\":270.000030517578,\"z\":0.0199999772012234}},\"3b983b\":{\"lock\":false,\"position\":{\"x\":-19.2918758392334,\"y\":1.31209874153137,\"z\":-69.0368881225586},\"rotation\":{\"x\":0.0199890658259392,\"y\":270,\"z\":0.0199997127056122}},\"3dd510\":{\"lock\":false,\"position\":{\"x\":-25.7682647705078,\"y\":1.30762112140656,\"z\":-75.3915863037109},\"rotation\":{\"x\":0.0199884288012981,\"y\":270.001098632813,\"z\":0.0200002640485764}},\"3fbda5\":{\"lock\":false,\"position\":{\"x\":52.9399948120117,\"y\":1.30944275856018,\"z\":-47.4200019836426},\"rotation\":{\"x\":0.0199889335781336,\"y\":270,\"z\":0.0199999082833529}},\"403150\":{\"lock\":false,\"position\":{\"x\":36.6199989318848,\"y\":1.29171001911163,\"z\":-81.9100036621094},\"rotation\":{\"x\":0.0199890751391649,\"y\":270,\"z\":0.019999897107482}},\"4181fc\":{\"lock\":false,\"position\":{\"x\":37.4199981689453,\"y\":1.29899513721466,\"z\":78.6599960327148},\"rotation\":{\"x\":0.0199891272932291,\"y\":270,\"z\":0.0200002510100603}},\"4344d5\":{\"lock\":false,\"position\":{\"x\":40.9599990844727,\"y\":1.3050434589386,\"z\":92.4499893188477},\"rotation\":{\"x\":0.0199892241507769,\"y\":270,\"z\":0.020000621676445}},\"43bb24\":{\"lock\":false,\"position\":{\"x\":58.3800010681152,\"y\":1.30066299438477,\"z\":62.4899978637695},\"rotation\":{\"x\":0.0199885461479425,\"y\":270.000030517578,\"z\":0.0199999567121267}},\"4439b6\":{\"lock\":false,\"position\":{\"x\":58.3800010681152,\"y\":1.31029713153839,\"z\":90.0899963378906},\"rotation\":{\"x\":0.0199888963252306,\"y\":269.999969482422,\"z\":0.0200012233108282}},\"4824be\":{\"lock\":false,\"position\":{\"x\":-25.7049884796143,\"y\":1.30649495124817,\"z\":-78.6810302734375},\"rotation\":{\"x\":0.0199897922575474,\"y\":269.997680664063,\"z\":0.0199990384280682}},\"4ead9a\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.31122553348541,\"z\":-47.4700012207031},\"rotation\":{\"x\":0.0199541784822941,\"y\":270.099548339844,\"z\":0.0200345404446125}},\"511858\":{\"lock\":false,\"position\":{\"x\":37.419994354248,\"y\":1.29498076438904,\"z\":67.1599960327148},\"rotation\":{\"x\":0.0199893433600664,\"y\":270.000061035156,\"z\":0.0200006626546383}},\"512c1c\":{\"lock\":false,\"position\":{\"x\":32.9900016784668,\"y\":1.29285216331482,\"z\":-75.010009765625},\"rotation\":{\"x\":0.0199893061071634,\"y\":270.000030517578,\"z\":0.0200006235390902}},\"523d1c\":{\"lock\":false,\"position\":{\"x\":36.6199913024902,\"y\":1.29813277721405,\"z\":-63.5100021362305},\"rotation\":{\"x\":0.0199890956282616,\"y\":269.999969482422,\"z\":0.0200004633516073}},\"549bc5\":{\"lock\":false,\"position\":{\"x\":49.5600051879883,\"y\":1.30322682857513,\"z\":78.6500015258789},\"rotation\":{\"x\":0.0199891999363899,\"y\":270.000030517578,\"z\":0.0200004205107689}},\"553a29\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.29998564720154,\"z\":-79.6700057983398},\"rotation\":{\"x\":0.0199891384691,\"y\":270.000061035156,\"z\":0.0200007613748312}},\"558764\":{\"lock\":false,\"position\":{\"x\":37.4200019836426,\"y\":1.30140364170074,\"z\":85.5599975585938},\"rotation\":{\"x\":0.0199894420802593,\"y\":269.999938964844,\"z\":0.0200004782527685}},\"5a0c55\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.29940962791443,\"z\":-63.5200004577637},\"rotation\":{\"x\":0.0199892707169056,\"y\":270,\"z\":0.0199999641627073}},\"5a7b1f\":{\"lock\":false,\"position\":{\"x\":58.379997253418,\"y\":1.30628287792206,\"z\":78.5899887084961},\"rotation\":{\"x\":0.0199893470853567,\"y\":270,\"z\":0.0200006254017353}},\"5bddf3\":{\"lock\":false,\"position\":{\"x\":24.8651599884033,\"y\":1.29809439182281,\"z\":88.6274337768555},\"rotation\":{\"x\":0.0199813041836023,\"y\":270.022705078125,\"z\":0.0200077407062054}},\"5d23b6\":{\"lock\":false,\"position\":{\"x\":-25.7025718688965,\"y\":1.32627058029175,\"z\":-70.5997695922852},\"rotation\":{\"x\":0.0199855584651232,\"y\":270.010894775391,\"z\":0.0200035162270069}},\"5ebd72\":{\"lock\":false,\"position\":{\"x\":40.9600028991699,\"y\":1.30183231830597,\"z\":83.25},\"rotation\":{\"x\":0.019989462569356,\"y\":269.999938964844,\"z\":0.0200005527585745}},\"6324bb\":{\"lock\":false,\"position\":{\"x\":49.5600051879883,\"y\":1.30242395401001,\"z\":76.3499984741211},\"rotation\":{\"x\":0.0199890527874231,\"y\":269.999938964844,\"z\":0.0199998710304499}},\"637b1b\":{\"lock\":false,\"position\":{\"x\":53.2299995422363,\"y\":1.30048942565918,\"z\":67.1399993896484},\"rotation\":{\"x\":0.0199932754039764,\"y\":269.987579345703,\"z\":0.0199955683201551}},\"663ab2\":{\"lock\":false,\"position\":{\"x\":-26.0694026947021,\"y\":1.31192874908447,\"z\":-62.7501449584961},\"rotation\":{\"x\":0.0199899636209011,\"y\":269.99755859375,\"z\":0.0199990421533585}},\"684480\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.30054140090942,\"z\":-56.6100044250488},\"rotation\":{\"x\":0.019988689571619,\"y\":270,\"z\":0.0199999865144491}},\"6b81cd\":{\"lock\":false,\"position\":{\"x\":49.5600051879883,\"y\":1.30483257770538,\"z\":83.25},\"rotation\":{\"x\":0.0199893023818731,\"y\":269.999938964844,\"z\":0.0200004708021879}},\"6cddbe\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.29893565177917,\"z\":-61.2100028991699},\"rotation\":{\"x\":0.0199887622147799,\"y\":270,\"z\":0.0199998002499342}},\"6da56c\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.29411852359772,\"z\":-75.010009765625},\"rotation\":{\"x\":0.0199893042445183,\"y\":270,\"z\":0.0200007148087025}},\"6dac57\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.30422651767731,\"z\":-49.7200050354004},\"rotation\":{\"x\":0.0199888814240694,\"y\":270,\"z\":0.0200001113116741}},\"7370d3\":{\"lock\":false,\"position\":{\"x\":40.9599990844727,\"y\":1.29380369186401,\"z\":60.25},\"rotation\":{\"x\":0.0199890770018101,\"y\":270.000030517578,\"z\":0.0199998337775469}},\"774e76\":{\"lock\":false,\"position\":{\"x\":-22.6099987030029,\"y\":1.31638550758362,\"z\":-53.4399948120117},\"rotation\":{\"x\":0.0199997816234827,\"y\":269.969787597656,\"z\":0.0199894215911627}},\"778a96\":{\"lock\":false,\"position\":{\"x\":40.9598579406738,\"y\":1.30424046516418,\"z\":90.1491775512695},\"rotation\":{\"x\":0.0199887193739414,\"y\":270,\"z\":0.0199999138712883}},\"77b235\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.30262100696564,\"z\":-54.3199996948242},\"rotation\":{\"x\":0.0199891533702612,\"y\":270,\"z\":0.0199999175965786}},\"78fe39\":{\"lock\":false,\"position\":{\"x\":-22.6199989318848,\"y\":1.31092262268066,\"z\":-69.0800018310547},\"rotation\":{\"x\":0.0199848040938377,\"y\":270.013061523438,\"z\":0.0200044438242912}},\"7958ee\":{\"lock\":false,\"position\":{\"x\":33.8600044250488,\"y\":1.29774963855743,\"z\":78.6500015258789},\"rotation\":{\"x\":0.0199892427772284,\"y\":269.999938964844,\"z\":0.0200007427483797}},\"7a096d\":{\"lock\":false,\"position\":{\"x\":52.939998626709,\"y\":1.30221712589264,\"z\":-68.120002746582},\"rotation\":{\"x\":0.0199889484792948,\"y\":270,\"z\":0.0199998766183853}},\"7b85ca\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.30640852451324,\"z\":-61.2700004577637},\"rotation\":{\"x\":0.0199886616319418,\"y\":270,\"z\":0.0199998058378696}},\"7df192\":{\"lock\":false,\"position\":{\"x\":52.930004119873,\"y\":1.2949914932251,\"z\":-88.8099975585938},\"rotation\":{\"x\":0.0199893023818731,\"y\":269.999969482422,\"z\":0.0200006701052189}},\"833f6a\":{\"lock\":false,\"position\":{\"x\":-22.6200008392334,\"y\":1.30542838573456,\"z\":-84.8199996948242},\"rotation\":{\"x\":0.0199844241142273,\"y\":270.013122558594,\"z\":0.02000442892313}},\"83e64d\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.29331564903259,\"z\":-77.3100051879883},\"rotation\":{\"x\":0.0199892744421959,\"y\":270.000061035156,\"z\":0.0200006552040577}},\"8593d6\":{\"lock\":false,\"position\":{\"x\":49.2799949645996,\"y\":1.30094373226166,\"z\":-68.1100082397461},\"rotation\":{\"x\":0.0199892800301313,\"y\":270,\"z\":0.0200006887316704}},\"879f48\":{\"lock\":false,\"position\":{\"x\":-25.9790267944336,\"y\":1.32179665565491,\"z\":-83.1402893066406},\"rotation\":{\"x\":0.0199910830706358,\"y\":269.994659423828,\"z\":0.0199981145560741}},\"87a130\":{\"lock\":false,\"position\":{\"x\":36.6199989318848,\"y\":1.29572427272797,\"z\":-70.4100036621094},\"rotation\":{\"x\":0.0199888125061989,\"y\":270.000030517578,\"z\":0.0199992321431637}},\"8b681a\":{\"lock\":false,\"position\":{\"x\":7.28531646728516,\"y\":1.33846282958984,\"z\":72.5691375732422},\"rotation\":{\"x\":359.980041503906,\"y\":90.0171279907227,\"z\":359.97998046875}},\"8bc045\":{\"lock\":false,\"position\":{\"x\":45.9800033569336,\"y\":1.30438649654388,\"z\":85.5500030517578},\"rotation\":{\"x\":0.0199891589581966,\"y\":269.999969482422,\"z\":0.0200004559010267}},\"8cfe6d\":{\"lock\":false,\"position\":{\"x\":40.9600028991699,\"y\":1.3268084526062,\"z\":78.6500015258789},\"rotation\":{\"x\":0.0199899841099977,\"y\":269.999755859375,\"z\":0.0200013220310211}},\"8fc0c5\":{\"lock\":false,\"position\":{\"x\":2.34448194503784,\"y\":1.33674263954163,\"z\":72.5789184570313},\"rotation\":{\"x\":359.980041503906,\"y\":90.0171890258789,\"z\":359.97998046875}},\"90c4ef\":{\"lock\":false,\"position\":{\"x\":49.5600051879883,\"y\":1.30563545227051,\"z\":85.5500030517578},\"rotation\":{\"x\":0.0199894029647112,\"y\":269.999877929688,\"z\":0.0200005322694778}},\"917633\":{\"lock\":false,\"position\":{\"x\":53.2299957275391,\"y\":1.30932080745697,\"z\":92.4399948120117},\"rotation\":{\"x\":0.0199894309043884,\"y\":270,\"z\":0.0200006309896708}},\"9aeb4e\":{\"lock\":false,\"position\":{\"x\":40.9599990844727,\"y\":1.29701519012451,\"z\":69.4499969482422},\"rotation\":{\"x\":0.0199890956282616,\"y\":270,\"z\":0.0199999399483204}},\"9d1e7f\":{\"lock\":false,\"position\":{\"x\":-19.2818336486816,\"y\":1.3093523979187,\"z\":-76.9148406982422},\"rotation\":{\"x\":0.0199890285730362,\"y\":270,\"z\":0.0199997704476118}},\"9ffbf0\":{\"lock\":false,\"position\":{\"x\":58.0999946594238,\"y\":1.3015912771225,\"z\":-75.0700073242188},\"rotation\":{\"x\":0.0199892111122608,\"y\":270,\"z\":0.0200007185339928}},\"a30b62\":{\"lock\":false,\"position\":{\"x\":40.2899971008301,\"y\":1.29459249973297,\"z\":-77.3200073242188},\"rotation\":{\"x\":0.0199892967939377,\"y\":270,\"z\":0.0200004447251558}},\"a33e94\":{\"lock\":false,\"position\":{\"x\":58.0999946594238,\"y\":1.30399990081787,\"z\":-68.1700057983398},\"rotation\":{\"x\":0.0199892967939377,\"y\":270,\"z\":0.0200005359947681}},\"a3e7ca\":{\"lock\":false,\"position\":{\"x\":-22.6200008392334,\"y\":1.30817544460297,\"z\":-76.9499969482422},\"rotation\":{\"x\":0.01998470723629,\"y\":270.013061523438,\"z\":0.0200043860822916}},\"a52748\":{\"lock\":false,\"position\":{\"x\":58.0999946594238,\"y\":1.30078840255737,\"z\":-77.3700103759766},\"rotation\":{\"x\":0.0199893806129694,\"y\":270.000061035156,\"z\":0.0200006384402514}},\"a539c5\":{\"lock\":false,\"position\":{\"x\":58.4613037109375,\"y\":1.51360499858856,\"z\":41.6438865661621},\"rotation\":{\"x\":-7.25289010006236E-06,\"y\":269.999816894531,\"z\":-1.07817436401092E-06}},\"a93fa1\":{\"lock\":false,\"position\":{\"x\":53.2300033569336,\"y\":1.30370080471039,\"z\":76.3399963378906},\"rotation\":{\"x\":0.0199894085526466,\"y\":269.999969482422,\"z\":0.0200004931539297}},\"a95bfe\":{\"lock\":false,\"position\":{\"x\":33.8600006103516,\"y\":1.29132676124573,\"z\":60.2499961853027},\"rotation\":{\"x\":0.0199887715280056,\"y\":270.000030517578,\"z\":0.020000021904707}},\"a9c200\":{\"lock\":false,\"position\":{\"x\":49.560001373291,\"y\":1.30804371833801,\"z\":92.4499893188477},\"rotation\":{\"x\":0.0199888423085213,\"y\":270.000061035156,\"z\":0.01999999769032}},\"aa3417\":{\"lock\":false,\"position\":{\"x\":58.379997253418,\"y\":1.31110000610352,\"z\":92.3899917602539},\"rotation\":{\"x\":0.019989300519228,\"y\":270,\"z\":0.0200006254017353}},\"b03d3b\":{\"lock\":false,\"position\":{\"x\":33.8599967956543,\"y\":1.29453814029694,\"z\":69.4499893188477},\"rotation\":{\"x\":0.0199892241507769,\"y\":270,\"z\":0.0200006123632193}},\"b0f6f7\":{\"lock\":false,\"position\":{\"x\":24.8664646148682,\"y\":1.29889357089996,\"z\":90.9159164428711},\"rotation\":{\"x\":0.0200329124927521,\"y\":269.874755859375,\"z\":0.0199559275060892}},\"b66a7d\":{\"lock\":false,\"position\":{\"x\":12.4204816818237,\"y\":1.28823924064636,\"z\":72.8324127197266},\"rotation\":{\"x\":0.0199888255447149,\"y\":270,\"z\":0.0200002025812864}},\"b99104\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.29218399524689,\"z\":-84.2200012207031},\"rotation\":{\"x\":0.0199891831725836,\"y\":270,\"z\":0.0199997872114182}},\"b99c9e\":{\"lock\":false,\"position\":{\"x\":40.2899971008301,\"y\":1.29780399799347,\"z\":-68.1200103759766},\"rotation\":{\"x\":0.0199893321841955,\"y\":270,\"z\":0.0200006701052189}},\"bb694c\":{\"lock\":false,\"position\":{\"x\":-25.7905902862549,\"y\":1.31474554538727,\"z\":-54.9594116210938},\"rotation\":{\"x\":0.0199759248644114,\"y\":270.037170410156,\"z\":0.0200127959251404}},\"bd09cf\":{\"lock\":false,\"position\":{\"x\":49.5600051879883,\"y\":1.30162107944489,\"z\":74.0500030517578},\"rotation\":{\"x\":0.0199892297387123,\"y\":270,\"z\":0.0200005397200584}},\"be3c16\":{\"lock\":false,\"position\":{\"x\":37.419994354248,\"y\":1.29257225990295,\"z\":60.2599945068359},\"rotation\":{\"x\":0.019988676533103,\"y\":270.000030517578,\"z\":0.0199999418109655}},\"bf766a\":{\"lock\":false,\"position\":{\"x\":40.2900047302246,\"y\":1.30502951145172,\"z\":-47.4199981689453},\"rotation\":{\"x\":0.0199886802583933,\"y\":270,\"z\":0.0200000517070293}},\"c2e615\":{\"lock\":false,\"position\":{\"x\":53.2299995422363,\"y\":1.30851805210114,\"z\":90.1399917602539},\"rotation\":{\"x\":0.0199892148375511,\"y\":270,\"z\":0.0200006756931543}},\"c32800\":{\"lock\":false,\"position\":{\"x\":53.2300033569336,\"y\":1.30450367927551,\"z\":78.6399993896484},\"rotation\":{\"x\":0.0199891384691,\"y\":269.999969482422,\"z\":0.020000696182251}},\"c43ab5\":{\"lock\":false,\"position\":{\"x\":40.2899971008301,\"y\":1.3018182516098,\"z\":-56.620002746582},\"rotation\":{\"x\":0.0199887324124575,\"y\":270.000030517578,\"z\":0.0199999306350946}},\"c90cc1\":{\"lock\":false,\"position\":{\"x\":40.9574203491211,\"y\":1.28978848457336,\"z\":48.7493095397949},\"rotation\":{\"x\":0.0199459847062826,\"y\":270.021789550781,\"z\":0.0199827030301094}},\"c94f94\":{\"lock\":false,\"position\":{\"x\":58.379997253418,\"y\":1.30307149887085,\"z\":69.3899917602539},\"rotation\":{\"x\":0.0199892688542604,\"y\":270,\"z\":0.0200005229562521}},\"c9f733\":{\"lock\":false,\"position\":{\"x\":52.9500007629395,\"y\":1.29740357398987,\"z\":-81.9199981689453},\"rotation\":{\"x\":0.0199891421943903,\"y\":270.000061035156,\"z\":0.0199998188763857}},\"ca0e26\":{\"lock\":false,\"position\":{\"x\":37.419994354248,\"y\":1.29578363895416,\"z\":69.4599914550781},\"rotation\":{\"x\":0.0199892353266478,\"y\":270.000061035156,\"z\":0.0200003758072853}},\"cb03c7\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.3080141544342,\"z\":-56.6699981689453},\"rotation\":{\"x\":0.0199890043586493,\"y\":270,\"z\":0.0199996586889029}},\"cb1a59\":{\"lock\":false,\"position\":{\"x\":32.9899978637695,\"y\":1.2952606678009,\"z\":-68.1100082397461},\"rotation\":{\"x\":0.0199893545359373,\"y\":270.000030517578,\"z\":0.020000422373414}},\"cb9a96\":{\"lock\":false,\"position\":{\"x\":-25.7820167541504,\"y\":1.3327260017395,\"z\":-52.026668548584},\"rotation\":{\"x\":0.0199795458465815,\"y\":270.027374267578,\"z\":0.0200095251202583}},\"ccce63\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.30375277996063,\"z\":-47.4100036621094},\"rotation\":{\"x\":0.0199887733906507,\"y\":270,\"z\":0.0199999809265137}},\"cdd689\":{\"lock\":false,\"position\":{\"x\":37.4199981689453,\"y\":1.30381190776825,\"z\":92.4599914550781},\"rotation\":{\"x\":0.0199893210083246,\"y\":270.000061035156,\"z\":0.0200007110834122}},\"cfba31\":{\"lock\":false,\"position\":{\"x\":40.2699966430664,\"y\":1.28976845741272,\"z\":-91.1200103759766},\"rotation\":{\"x\":0.0199893172830343,\"y\":270.000061035156,\"z\":0.0200005955994129}},\"d386ac\":{\"lock\":false,\"position\":{\"x\":49.2799987792969,\"y\":1.3057609796524,\"z\":-54.310001373291},\"rotation\":{\"x\":0.0199887864291668,\"y\":270.000030517578,\"z\":0.0199998989701271}},\"d6321f\":{\"lock\":false,\"position\":{\"x\":52.9399948120117,\"y\":1.30382287502289,\"z\":-63.5200042724609},\"rotation\":{\"x\":0.0199893079698086,\"y\":270,\"z\":0.0200004484504461}},\"d70fc5\":{\"lock\":false,\"position\":{\"x\":49.5599975585938,\"y\":1.2992125749588,\"z\":67.1499938964844},\"rotation\":{\"x\":0.0199890211224556,\"y\":270.000061035156,\"z\":0.0200007110834122}},\"d9180a\":{\"lock\":false,\"position\":{\"x\":52.9399948120117,\"y\":1.30462574958801,\"z\":-61.2200050354004},\"rotation\":{\"x\":0.019988838583231,\"y\":270,\"z\":0.0199999362230301}},\"da3325\":{\"lock\":false,\"position\":{\"x\":53.2299995422363,\"y\":1.30610942840576,\"z\":83.2399978637695},\"rotation\":{\"x\":0.0199889168143272,\"y\":270,\"z\":0.0199999045580626}},\"da9e4a\":{\"lock\":false,\"position\":{\"x\":58.369987487793,\"y\":1.29582846164703,\"z\":48.6499481201172},\"rotation\":{\"x\":0.0199537500739098,\"y\":269.998046875,\"z\":0.0199747122824192}},\"df9c9a\":{\"lock\":false,\"position\":{\"x\":52.9399948120117,\"y\":1.3014143705368,\"z\":-70.4200057983398},\"rotation\":{\"x\":0.0199891589581966,\"y\":270.000030517578,\"z\":0.019999697804451}},\"dfb2f1\":{\"lock\":false,\"position\":{\"x\":-25.7071647644043,\"y\":1.332160115242,\"z\":-67.5140838623047},\"rotation\":{\"x\":0.0199765153229237,\"y\":270.036315917969,\"z\":0.0200123582035303}},\"dfce17\":{\"lock\":false,\"position\":{\"x\":33.8600006103516,\"y\":1.29212963581085,\"z\":62.5499954223633},\"rotation\":{\"x\":0.0199888907372952,\"y\":270,\"z\":0.019999897107482}},\"e068a9\":{\"lock\":false,\"position\":{\"x\":45.6400032043457,\"y\":1.3068995475769,\"z\":-47.4099960327148},\"rotation\":{\"x\":0.0199890304356813,\"y\":270,\"z\":0.019999710842967}},\"e570e3\":{\"lock\":false,\"position\":{\"x\":-19.2999992370605,\"y\":1.31482100486755,\"z\":-61.2299995422363},\"rotation\":{\"x\":0.0195445418357849,\"y\":271.260009765625,\"z\":0.0204341318458319}},\"e7cddc\":{\"lock\":false,\"position\":{\"x\":58.379997253418,\"y\":1.29825437068939,\"z\":55.5899963378906},\"rotation\":{\"x\":0.019988751038909,\"y\":270.000030517578,\"z\":0.020000034943223}},\"e7d9cc\":{\"lock\":false,\"position\":{\"x\":49.2800025939941,\"y\":1.30736672878265,\"z\":-49.7099952697754},\"rotation\":{\"x\":0.0199998766183853,\"y\":269.967803955078,\"z\":0.0199888199567795}},\"e90374\":{\"lock\":false,\"position\":{\"x\":40.2900009155273,\"y\":1.29298686981201,\"z\":-81.9199981689453},\"rotation\":{\"x\":0.0199891142547131,\"y\":270.000061035156,\"z\":0.0199999213218689}},\"eda90d\":{\"lock\":false,\"position\":{\"x\":6.61029195785522,\"y\":1.27537989616394,\"z\":85.8816146850586},\"rotation\":{\"x\":0.0383561253547668,\"y\":270.004486083984,\"z\":0.0200017616152763}},\"f16d4c\":{\"lock\":false,\"position\":{\"x\":58.3899955749512,\"y\":1.29906070232391,\"z\":57.8899955749512},\"rotation\":{\"x\":0.0199886336922646,\"y\":270.000061035156,\"z\":0.0199999343603849}},\"f2b8f1\":{\"lock\":false,\"position\":{\"x\":53.2299957275391,\"y\":1.3012923002243,\"z\":69.4399948120117},\"rotation\":{\"x\":0.0199889168143272,\"y\":270,\"z\":0.0199998766183853}},\"f44bd0\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.30134415626526,\"z\":-54.3100051879883},\"rotation\":{\"x\":0.0199889112263918,\"y\":270,\"z\":0.0199998877942562}},\"f67386\":{\"lock\":false,\"position\":{\"x\":40.9599990844727,\"y\":1.29460656642914,\"z\":62.5499992370605},\"rotation\":{\"x\":0.0199891496449709,\"y\":270,\"z\":0.0199999269098043}},\"f7bdfc\":{\"lock\":false,\"position\":{\"x\":36.6199951171875,\"y\":1.2965270280838,\"z\":-68.1100082397461},\"rotation\":{\"x\":0.019989462569356,\"y\":270,\"z\":0.0200005993247032}},\"f7de8e\":{\"lock\":false,\"position\":{\"x\":53.2299957275391,\"y\":1.29888379573822,\"z\":62.5399971008301},\"rotation\":{\"x\":0.0199889503419399,\"y\":269.999969482422,\"z\":0.0200000405311584}},\"f9f68c\":{\"lock\":false,\"position\":{\"x\":53.2300033569336,\"y\":1.30289804935455,\"z\":74.0400009155273},\"rotation\":{\"x\":0.0199891850352287,\"y\":270,\"z\":0.0200005397200584}},\"fc4db8\":{\"lock\":false,\"position\":{\"x\":40.2699966430664,\"y\":1.29057478904724,\"z\":-88.8100051879883},\"rotation\":{\"x\":0.0199893470853567,\"y\":270,\"z\":0.0200005788356066}},\"fcee80\":{\"lock\":false,\"position\":{\"x\":32.9899978637695,\"y\":1.29445779323578,\"z\":-70.4100112915039},\"rotation\":{\"x\":0.0199891496449709,\"y\":270.000030517578,\"z\":0.0200005825608969}},\"ff0f7c\":{\"lock\":false,\"position\":{\"x\":49.2800025939941,\"y\":1.30816948413849,\"z\":-47.4099960327148},\"rotation\":{\"x\":0.0199889950454235,\"y\":270.000030517578,\"z\":0.0199999064207077}},\"ff47b8\":{\"lock\":false,\"position\":{\"x\":58.0999984741211,\"y\":1.30961954593658,\"z\":-52.0699996948242},\"rotation\":{\"x\":0.019988764077425,\"y\":270,\"z\":0.0199999548494816}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "833f6a",
"Name": "Card",
"Transform": {
"posX": -22.62,
"posY": 1.30542839,
"posZ": -84.82,
"rotX": 0.0199844241,
"rotY": 270.013123,
"rotZ": 0.0200044289,
"scaleX": 0.7828339,
"scaleY": 1.0,
"scaleZ": 0.7828339
},
"Nickname": "Alma Venandi",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 104,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "https://i.imgur.com/SMEBfLl.jpg",
"BackURL": "https://i.imgur.com/t3SEzf2.jpg",
"NumWidth": 2,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a3e7ca",
"Name": "Card",
"Transform": {
"posX": -22.62,
"posY": 1.30817544,
"posZ": -76.95,
"rotX": 0.0199847072,
"rotY": 270.013062,
"rotZ": 0.0200043861,
"scaleX": 0.7828339,
"scaleY": 1.0,
"scaleZ": 0.7828339
},
"Nickname": "William Grindel",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 103,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "https://i.imgur.com/SMEBfLl.jpg",
"BackURL": "https://i.imgur.com/t3SEzf2.jpg",
"NumWidth": 2,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "78fe39",
"Name": "Card",
"Transform": {
"posX": -22.6199989,
"posY": 1.31092262,
"posZ": -69.08,
"rotX": 0.0199848041,
"rotY": 270.013062,
"rotZ": 0.0200044438,
"scaleX": 0.7828339,
"scaleY": 1.0,
"scaleZ": 0.7828339
},
"Nickname": "Jack Myers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 102,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "https://i.imgur.com/SMEBfLl.jpg",
"BackURL": "https://i.imgur.com/t3SEzf2.jpg",
"NumWidth": 2,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "12d4ad",
"Name": "Card",
"Transform": {
"posX": -22.62,
"posY": 1.31365931,
"posZ": -61.24,
"rotX": 0.019982215,
"rotY": 270.019745,
"rotZ": 0.0200065728,
"scaleX": 0.7828339,
"scaleY": 1.0,
"scaleZ": 0.7828339
},
"Nickname": "Chiaki Asami",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 101,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "https://i.imgur.com/SMEBfLl.jpg",
"BackURL": "https://i.imgur.com/t3SEzf2.jpg",
"NumWidth": 2,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "774e76",
"Name": "Card",
"Transform": {
"posX": -22.6099987,
"posY": 1.31638551,
"posZ": -53.4399948,
"rotX": 0.0199997816,
"rotY": 269.9698,
"rotZ": 0.0199894216,
"scaleX": 0.7828339,
"scaleY": 1.0,
"scaleZ": 0.7828339
},
"Nickname": "Akira Hojo",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 100,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "https://i.imgur.com/SMEBfLl.jpg",
"BackURL": "https://i.imgur.com/t3SEzf2.jpg",
"NumWidth": 2,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2fa8cc",
"Name": "Card",
"Transform": {
"posX": -25.984457,
"posY": 1.30371273,
"posZ": -86.37244,
"rotX": 0.0199800953,
"rotY": 270.025757,
"rotZ": 0.0200088751,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Inevitable Fate",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 610913,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "879f48",
"Name": "Deck",
"Transform": {
"posX": -25.9790268,
"posY": 1.32179666,
"posZ": -83.14029,
"rotX": 0.0199910831,
"rotY": 269.994659,
"rotZ": 0.0199981146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
610912,
610912
],
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "78e957",
"Name": "Card",
"Transform": {
"posX": -16.8856182,
"posY": 1.40258908,
"posZ": -44.9100456,
"rotX": 356.980682,
"rotY": 269.976135,
"rotZ": 0.0201807,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vagrant Messenger",
"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": false,
"Hands": true,
"CardID": 610912,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5209f1",
"Name": "Card",
"Transform": {
"posX": -16.8870125,
"posY": 1.50819075,
"posZ": -44.70521,
"rotX": 359.834259,
"rotY": 269.99884,
"rotZ": 0.01661788,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vagrant Messenger",
"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": false,
"Hands": true,
"CardID": 610912,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "4824be",
"Name": "Card",
"Transform": {
"posX": -25.7049885,
"posY": 1.306495,
"posZ": -78.68103,
"rotX": 0.0199897923,
"rotY": 269.997681,
"rotZ": 0.0199990384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Star Spawn",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 610911,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dd510",
"Name": "Card",
"Transform": {
"posX": -25.7682648,
"posY": 1.30762112,
"posZ": -75.39159,
"rotX": 0.0199884288,
"rotY": 270.0011,
"rotZ": 0.020000264,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Future Foretold",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 610910,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dfb2f1",
"Name": "Deck",
"Transform": {
"posX": -25.7071648,
"posY": 1.33216012,
"posZ": -67.5140839,
"rotX": 0.0199765153,
"rotY": 270.036316,
"rotZ": 0.0200123582,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
610908,
610908,
610908
],
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5e3d9d",
"Name": "Card",
"Transform": {
"posX": -16.5823116,
"posY": 1.32156754,
"posZ": -44.6188469,
"rotX": 0.0199751575,
"rotY": 270.0402,
"rotZ": 0.02001366,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Family Bonds",
"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": false,
"Hands": true,
"CardID": 610908,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "78bfbb",
"Name": "Card",
"Transform": {
"posX": -16.4060574,
"posY": 1.36013663,
"posZ": -44.5968666,
"rotX": 0.00590557232,
"rotY": 270.056732,
"rotZ": 0.0547923744,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Family Bonds",
"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": false,
"Hands": true,
"CardID": 610908,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bb1929",
"Name": "Card",
"Transform": {
"posX": -16.0435028,
"posY": 1.3853215,
"posZ": -44.8780365,
"rotX": 0.0164909437,
"rotY": 270.063171,
"rotZ": 0.02797414,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Family Bonds",
"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": false,
"Hands": true,
"CardID": 610908,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "5d23b6",
"Name": "Deck",
"Transform": {
"posX": -25.7025719,
"posY": 1.32627058,
"posZ": -70.59977,
"rotX": 0.0199855585,
"rotY": 270.0109,
"rotZ": 0.0200035162,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
610909,
610909
],
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "9a40d8",
"Name": "Card",
"Transform": {
"posX": -19.9640884,
"posY": 1.31963146,
"posZ": -46.78551,
"rotX": 0.0199852511,
"rotY": 270.0109,
"rotZ": 0.0200035572,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prying Eyes",
"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": false,
"Hands": true,
"CardID": 610909,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a380bc",
"Name": "Card",
"Transform": {
"posX": -19.5384331,
"posY": 1.351725,
"posZ": -46.8944321,
"rotX": 0.0199854728,
"rotY": 270.0109,
"rotZ": 0.0200030841,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prying Eyes",
"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": false,
"Hands": true,
"CardID": 610909,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "663ab2",
"Name": "Card",
"Transform": {
"posX": -26.0694027,
"posY": 1.31192875,
"posZ": -62.750145,
"rotX": 0.0199899636,
"rotY": 269.997559,
"rotZ": 0.0199990422,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "On Borrowed Time",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 610907,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "167f1d",
"Name": "Deck",
"Transform": {
"posX": -26.0351868,
"posY": 1.34438956,
"posZ": -59.7339745,
"rotX": 0.0199750587,
"rotY": 270.040741,
"rotZ": 0.0200138036,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
610906,
610906,
611003,
611004,
611005
],
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6110": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/iOrIXOP.png",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "619148",
"Name": "Card",
"Transform": {
"posX": -23.59905,
"posY": 1.31915569,
"posZ": -44.5153847,
"rotX": 0.0199747626,
"rotY": 270.040771,
"rotZ": 0.0200139582,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Push for Progress",
"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": false,
"Hands": true,
"CardID": 610906,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a241f8",
"Name": "Card",
"Transform": {
"posX": -23.55325,
"posY": 1.34855473,
"posZ": -44.55023,
"rotX": 0.0160008222,
"rotY": 269.998932,
"rotZ": 0.0158059653,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Push for Progress",
"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": false,
"Hands": true,
"CardID": 610906,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "204c0a",
"Name": "Card",
"Transform": {
"posX": -23.5679646,
"posY": 1.31804764,
"posZ": -47.72104,
"rotX": 0.0199979432,
"rotY": 269.974182,
"rotZ": 0.0199908428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Policy",
"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": false,
"Hands": true,
"CardID": 611003,
"SidewaysCard": false,
"CustomDeck": {
"6110": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/iOrIXOP.png",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "113561",
"Name": "Card",
"Transform": {
"posX": -24.9270668,
"posY": 1.31841826,
"posZ": -45.3010025,
"rotX": 0.0199828111,
"rotY": 270.017578,
"rotZ": 0.0200060084,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Policy",
"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": false,
"Hands": true,
"CardID": 611004,
"SidewaysCard": false,
"CustomDeck": {
"6110": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/iOrIXOP.png",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "99ea60",
"Name": "Card",
"Transform": {
"posX": -25.1684074,
"posY": 1.35470426,
"posZ": -45.3222,
"rotX": 0.0201437548,
"rotY": 270.016357,
"rotZ": 0.0199252125,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Policy",
"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": false,
"Hands": true,
"CardID": 611005,
"SidewaysCard": false,
"CustomDeck": {
"6110": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/iOrIXOP.png",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "bb694c",
"Name": "Card",
"Transform": {
"posX": -25.79059,
"posY": 1.31474555,
"posZ": -54.95941,
"rotX": 0.0199759249,
"rotY": 270.03717,
"rotZ": 0.0200127959,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Occupational Hazard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 610902,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb9a96",
"Name": "Deck",
"Transform": {
"posX": -25.7820168,
"posY": 1.332726,
"posZ": -52.02667,
"rotX": 0.0199795458,
"rotY": 270.027374,
"rotZ": 0.0200095251,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
610901,
610900
],
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "37db89",
"Name": "Card",
"Transform": {
"posX": -23.4793224,
"posY": 1.46405876,
"posZ": -43.20143,
"rotX": 359.983551,
"rotY": 270.030121,
"rotZ": 7.56204748,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rite of Passage",
"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": false,
"Hands": true,
"CardID": 610901,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "66a8f4",
"Name": "Card",
"Transform": {
"posX": -23.07955,
"posY": 1.63489985,
"posZ": -43.1396751,
"rotX": 359.976959,
"rotY": 270.0089,
"rotZ": 0.156890616,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Burning Ambition",
"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": false,
"Hands": true,
"CardID": 610900,
"SidewaysCard": false,
"CustomDeck": {
"6109": {
"FaceURL": "https://i.imgur.com/Zt2kbdW.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "07d486",
"Name": "CardCustom",
"Transform": {
"posX": -19.308279,
"posY": 1.30661237,
"posZ": -84.737915,
"rotX": 0.01998904,
"rotY": 270.0,
"rotZ": 0.0199995469,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 554800,
"SidewaysCard": false,
"CustomDeck": {
"5548": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1704032603117304870/FAF4997EECBF9E8422FD21D15B125517E2B79563/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1704032603117305065/4CE403F01AE153F7209BE1746505494780478D3E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "361151",
"Name": "CardCustom",
"Transform": {
"posX": -19.3,
"posY": 1.31754029,
"posZ": -53.44,
"rotX": 0.0199784879,
"rotY": 270.03,
"rotZ": 0.0200103335,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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/1814363174139912750/6DE9B7AD9D0FD0429B70AC0F285318C7A591CEC0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1814363174139912950/E7866E79835E8BA38B1BCF148B69F97731688F1F/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3b983b",
"Name": "CardCustom",
"Transform": {
"posX": -19.2918758,
"posY": 1.31209874,
"posZ": -69.03689,
"rotX": 0.0199890658,
"rotY": 270.0,
"rotZ": 0.0199997127,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Jack Myers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"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/1603799534286094147/BBD5896EEFE31401BAFE50C8CE31D53D7FD003E8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1603799534286094322/7A15E3A0ECDF4E93FB275E476011D8B2D389A8E1/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9d1e7f",
"Name": "CardCustom",
"Transform": {
"posX": -19.2818336,
"posY": 1.3093524,
"posZ": -76.91484,
"rotX": 0.0199890286,
"rotY": 270.0,
"rotZ": 0.01999977,
"scaleX": 0.61,
"scaleY": 1.0,
"scaleZ": 0.61
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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/1700658166829681566/6B7CF68AC7E75A030ACA9F2D04B957276C7C2E50/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1700658166829681808/346ED23C694FB587BB849F29C59A2B5C463206D8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e570e3",
"Name": "CardCustom",
"Transform": {
"posX": -19.3,
"posY": 1.314821,
"posZ": -61.23,
"rotX": 0.0195445418,
"rotY": 271.26,
"rotZ": 0.0204341318,
"scaleX": 0.61,
"scaleY": 1.0,
"scaleZ": 0.61
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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/1731063025323290637/E91896AFC0D03C2631F2169515CF4FD3BBE3449C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1731063025323290817/95485BE6ABF1EE6D78B93D93C6ABFB254657F6C0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b66a7d",
"Name": "CardCustom",
"Transform": {
"posX": 12.4204817,
"posY": 1.28823924,
"posZ": 72.83241,
"rotX": 0.0199888255,
"rotY": 270.0,
"rotZ": 0.0200002026,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Handlocked Rules",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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/1817765931020622518/0AF0C43367AA7F55B185747EDED086B3916875E7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1817765931020622817/7461827A94CAE306C99A988C6317ECA5D673FEBD/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b681a",
"Name": "Notecard",
"Transform": {
"posX": 7.28531647,
"posY": 1.33846283,
"posZ": 72.56914,
"rotX": 359.980042,
"rotY": 90.01713,
"rotZ": 359.97998,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Shadows of Arkham Info Card",
"Description": "Feedback appreciated. Send any feedback / suggestions to kyo#4493 on Discord, at Kyo in the homebrew player cards channel of the Mythos Buster Discord, or on the workshop page.",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "778a96",
"Name": "Card",
"Transform": {
"posX": 40.9598579,
"posY": 1.30424047,
"posZ": 90.14918,
"rotX": 0.01998872,
"rotY": 270.0,
"rotZ": 0.0199999139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beseeching Prayer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 607501,
"SidewaysCard": false,
"CustomDeck": {
"6075": {
"FaceURL": "https://i.imgur.com/qguFqyy.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "function onload()\n chaosbag = getChaosBag()\n sealedTokens = { }\n IMAGE_TOKEN_MAP = { }\n for i,v in pairs(Global.getVar(\"IMAGE_TOKEN_MAP\")) do\n IMAGE_TOKEN_MAP[i] = v\n end\n\n -- add menu items\n self.clearContextMenu()\n self.addContextMenuItem(\"Release Token\", releaseTokens)\n for url,name in pairs(IMAGE_TOKEN_MAP) do\n if name == \"Elder Sign\" then\n self.addContextMenuItem(\"Seal Elder Sign\", function(playerColor) sealToken(url, playerColor) end)\n end\n end\nend\n\nfunction sealToken(url, playerColor)\n local pos = self.getPosition()\n\n local name = IMAGE_TOKEN_MAP[url]\n for i,obj in ipairs(chaosbag.getObjects()) do\n if obj.name == name then\n chaosbag.takeObject({\n position={ pos.x, pos.y + 1, pos.z },\n index=i-1,\n smooth=false,\n callback_function=_sealToken\n })\n return\n end\n end\n printToColor(name .. \" token not found in bag\", playerColor)\nend\n\nfunction _sealToken(obj)\n table.insert(sealedTokens, obj)\nend\n\nfunction releaseTokens(playerColor)\n printToColor(\"Releasing token\", playerColor)\n for i,obj in ipairs(sealedTokens) do\n chaosbag.putObject(obj)\n end\n sealedTokens = { }\nend\n\nfunction getChaosBag()\n local items = getObjectFromGUID(\"83ef06\").getObjects()\n local chaosbag = nil\n for i,v in ipairs(items) do\n if v.getDescription() == \"Chaos Bag\" then\n chaosbag = getObjectFromGUID(v.getGUID())\n break\n end\n end\n if chaosbag == nil then printToAll(\"No chaos bag found\") end\n return chaosbag\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eda90d",
"Name": "Custom_PDF",
"Transform": {
"posX": 6.610292,
"posY": 1.2753799,
"posZ": 85.8816147,
"rotX": 0.0383561254,
"rotY": 270.0045,
"rotZ": 0.0200017616,
"scaleX": 3.907751,
"scaleY": 1.0,
"scaleZ": 3.907751
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1806519361648221552/18D278D1017651C4F0B019F27593EAA80BA9BA44/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8fc0c5",
"Name": "Notecard",
"Transform": {
"posX": 2.344482,
"posY": 1.33674264,
"posZ": 72.57892,
"rotX": 359.980042,
"rotY": 90.01719,
"rotZ": 359.97998,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Version 5/29/2022",
"Description": "Change log: https://steamcommunity.com/sharedfiles/filedetails/?id=2592298573",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4344d5",
"Name": "Card",
"Transform": {
"posX": 40.96,
"posY": 1.30504346,
"posZ": 92.44999,
"rotX": 0.0199892242,
"rotY": 270.0,
"rotZ": 0.0200006217,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Assemble the Team",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cdd689",
"Name": "Card",
"Transform": {
"posX": 37.42,
"posY": 1.30381191,
"posZ": 92.45999,
"rotX": 0.019989321,
"rotY": 270.000061,
"rotZ": 0.0200007111,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Discarded Dogtags",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611102,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35aca5",
"Name": "Card",
"Transform": {
"posX": 37.4199944,
"posY": 1.30300927,
"posZ": 90.159996,
"rotX": 0.0199891534,
"rotY": 270.0,
"rotZ": 0.0200007875,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Undercover Agent",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611103,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "917633",
"Name": "Card",
"Transform": {
"posX": 53.2299957,
"posY": 1.30932081,
"posZ": 92.4399948,
"rotX": 0.01998943,
"rotY": 270.0,
"rotZ": 0.020000631,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Close Quarters",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611104,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c2e615",
"Name": "Card",
"Transform": {
"posX": 53.23,
"posY": 1.308518,
"posZ": 90.13999,
"rotX": 0.0199892148,
"rotY": 270.0,
"rotZ": 0.0200006757,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Distribute Supplies",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611105,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a9c200",
"Name": "Card",
"Transform": {
"posX": 49.56,
"posY": 1.30804372,
"posZ": 92.44999,
"rotX": 0.0199888423,
"rotY": 270.000061,
"rotZ": 0.0199999977,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Good Cap, Bad Cop",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611106,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa3417",
"Name": "Card",
"Transform": {
"posX": 58.3799973,
"posY": 1.3111,
"posZ": 92.38999,
"rotX": 0.0199893,
"rotY": 270.0,
"rotZ": 0.0200006254,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Absolute Focus",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611107,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4439b6",
"Name": "Card",
"Transform": {
"posX": 58.38,
"posY": 1.31029713,
"posZ": 90.09,
"rotX": 0.0199888963,
"rotY": 269.999969,
"rotZ": 0.0200012233,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Faithful",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611108,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3fbda5",
"Name": "Card",
"Transform": {
"posX": 52.9399948,
"posY": 1.30944276,
"posZ": -47.420002,
"rotX": 0.0199889336,
"rotY": 270.0,
"rotZ": 0.0199999083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insult",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611109,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf766a",
"Name": "Card",
"Transform": {
"posX": 40.2900047,
"posY": 1.30502951,
"posZ": -47.42,
"rotX": 0.01998868,
"rotY": 270.0,
"rotZ": 0.0200000517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lie in Wait",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611110,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6dac57",
"Name": "Card",
"Transform": {
"posX": 40.29,
"posY": 1.30422652,
"posZ": -49.720005,
"rotX": 0.0199888814,
"rotY": 270.0,
"rotZ": 0.0200001113,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rush to the scene",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611111,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2545b4",
"Name": "Card",
"Transform": {
"posX": 52.94,
"posY": 1.30863976,
"posZ": -49.720005,
"rotX": 0.0199889634,
"rotY": 270.0,
"rotZ": 0.0200000945,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Good Cap, Bad Cop",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611112,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ccce63",
"Name": "Card",
"Transform": {
"posX": 36.6199951,
"posY": 1.30375278,
"posZ": -47.4100037,
"rotX": 0.0199887734,
"rotY": 270.0,
"rotZ": 0.01999998,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Security Guard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611113,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ff0f7c",
"Name": "Card",
"Transform": {
"posX": 49.2800026,
"posY": 1.30816948,
"posZ": -47.409996,
"rotX": 0.019988995,
"rotY": 270.000031,
"rotZ": 0.0199999064,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Strike to end an Age",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611114,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e7d9cc",
"Name": "Card",
"Transform": {
"posX": 49.2800026,
"posY": 1.30736673,
"posZ": -49.7099953,
"rotX": 0.0199998766,
"rotY": 269.9678,
"rotZ": 0.01998882,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunt them Down",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611115,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e068a9",
"Name": "Card",
"Transform": {
"posX": 45.6400032,
"posY": 1.30689955,
"posZ": -47.409996,
"rotX": 0.01998903,
"rotY": 270.0,
"rotZ": 0.01999971,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insult",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611116,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4ead9a",
"Name": "Card",
"Transform": {
"posX": 58.1,
"posY": 1.31122553,
"posZ": -47.47,
"rotX": 0.0199541785,
"rotY": 270.099548,
"rotZ": 0.02003454,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Faithful",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611117,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0f0ae6",
"Name": "Card",
"Transform": {
"posX": 58.1,
"posY": 1.31042266,
"posZ": -49.77,
"rotX": 0.0199842155,
"rotY": 270.0144,
"rotZ": 0.02000489,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I'm too old for this...\"",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611118,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ff47b8",
"Name": "Card",
"Transform": {
"posX": 58.1,
"posY": 1.30961955,
"posZ": -52.07,
"rotX": 0.0199887641,
"rotY": 270.0,
"rotZ": 0.0199999548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"I'm Gonna Need a Bigger Gun.\"",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611119,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3072b2",
"Name": "Card",
"Transform": {
"posX": 40.9600029,
"posY": 1.30263507,
"posZ": 85.55,
"rotX": 0.0199891478,
"rotY": 269.999939,
"rotZ": 0.0200007111,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dave Reacher",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611120,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ebd72",
"Name": "Card",
"Transform": {
"posX": 40.9600029,
"posY": 1.30183232,
"posZ": 83.25,
"rotX": 0.0199894626,
"rotY": 269.999939,
"rotZ": 0.0200005528,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lab Coat",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611121,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "558764",
"Name": "Card",
"Transform": {
"posX": 37.420002,
"posY": 1.30140364,
"posZ": 85.56,
"rotX": 0.0199894421,
"rotY": 269.999939,
"rotZ": 0.0200004783,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unlicensed \"Surgeon\"",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611122,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0007e3",
"Name": "Card",
"Transform": {
"posX": 53.23,
"posY": 1.3069123,
"posZ": 85.54,
"rotX": 0.01998897,
"rotY": 270.0,
"rotZ": 0.0200012,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Do as I do.\"",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611123,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da3325",
"Name": "Card",
"Transform": {
"posX": 53.23,
"posY": 1.30610943,
"posZ": 83.24,
"rotX": 0.0199889168,
"rotY": 270.0,
"rotZ": 0.0199999046,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eldritch Research",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611124,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90c4ef",
"Name": "Card",
"Transform": {
"posX": 49.5600052,
"posY": 1.30563545,
"posZ": 85.55,
"rotX": 0.019989403,
"rotY": 269.999878,
"rotZ": 0.0200005323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Following the Trail",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611125,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6b81cd",
"Name": "Card",
"Transform": {
"posX": 49.5600052,
"posY": 1.30483258,
"posZ": 83.25,
"rotX": 0.0199893024,
"rotY": 269.999939,
"rotZ": 0.02000047,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Glint From Afar",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611126,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8bc045",
"Name": "Card",
"Transform": {
"posX": 45.9800034,
"posY": 1.3043865,
"posZ": 85.55,
"rotX": 0.019989159,
"rotY": 269.999969,
"rotZ": 0.0200004559,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rampant Search",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611127,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "169484",
"Name": "Card",
"Transform": {
"posX": 45.9800034,
"posY": 1.30358362,
"posZ": 83.25,
"rotX": 0.0199889559,
"rotY": 269.999969,
"rotZ": 0.0199999027,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snooping Around",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611128,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1b935e",
"Name": "Card",
"Transform": {
"posX": 52.94,
"posY": 1.30703425,
"posZ": -54.32,
"rotX": 0.01998919,
"rotY": 269.999969,
"rotZ": 0.0199997146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sinister Challenge",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611129,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3764c1",
"Name": "Card",
"Transform": {
"posX": 52.9400024,
"posY": 1.30623138,
"posZ": -56.6199951,
"rotX": 0.0199887212,
"rotY": 270.000031,
"rotZ": 0.0199999772,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Scriptures",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611130,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb03c7",
"Name": "Card",
"Transform": {
"posX": 58.1,
"posY": 1.30801415,
"posZ": -56.67,
"rotX": 0.0199890044,
"rotY": 270.0,
"rotZ": 0.0199996587,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Seeing the Big Picture",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611131,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77b235",
"Name": "Card",
"Transform": {
"posX": 40.29,
"posY": 1.302621,
"posZ": -54.32,
"rotX": 0.0199891534,
"rotY": 270.0,
"rotZ": 0.0199999176,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heather Freeman",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611132,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c43ab5",
"Name": "Card",
"Transform": {
"posX": 40.2899971,
"posY": 1.30181825,
"posZ": -56.6200027,
"rotX": 0.0199887324,
"rotY": 270.000031,
"rotZ": 0.01999993,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shroud of the Old Ones",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611133,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d386ac",
"Name": "Card",
"Transform": {
"posX": 49.28,
"posY": 1.305761,
"posZ": -54.31,
"rotX": 0.0199887864,
"rotY": 270.000031,
"rotZ": 0.019999899,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bookkeeping",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611134,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f44bd0",
"Name": "Card",
"Transform": {
"posX": 36.6199951,
"posY": 1.30134416,
"posZ": -54.3100052,
"rotX": 0.0199889112,
"rotY": 270.0,
"rotZ": 0.0199998878,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tome of Memories",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611135,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "684480",
"Name": "Card",
"Transform": {
"posX": 36.6199951,
"posY": 1.3005414,
"posZ": -56.6100044,
"rotX": 0.01998869,
"rotY": 270.0,
"rotZ": 0.0199999865,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Timelocked",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611136,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a9b06",
"Name": "Card",
"Transform": {
"posX": 40.9599953,
"posY": 1.29942369,
"posZ": 76.34999,
"rotX": 0.019989375,
"rotY": 270.0,
"rotZ": 0.02000071,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Inner Lining",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611141,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4181fc",
"Name": "Card",
"Transform": {
"posX": 37.42,
"posY": 1.29899514,
"posZ": 78.659996,
"rotX": 0.0199891273,
"rotY": 270.0,
"rotZ": 0.020000251,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Oddly Shaped Key",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611142,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "343d25",
"Name": "Card",
"Transform": {
"posX": 37.4199944,
"posY": 1.29819214,
"posZ": 76.35999,
"rotX": 0.0199894458,
"rotY": 270.0,
"rotZ": 0.0200006776,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stacked Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611143,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8cfe6d",
"Name": "Deck",
"Transform": {
"posX": 40.9600029,
"posY": 1.32680845,
"posZ": 78.65,
"rotX": 0.0199899841,
"rotY": 269.999756,
"rotZ": 0.020001322,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
611140,
611139,
611138,
611137
],
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "9fc9a2",
"Name": "Card",
"Transform": {
"posX": 45.9799957,
"posY": 1.29876649,
"posZ": 69.44999,
"rotX": 0.01998903,
"rotY": 270.0,
"rotZ": 0.02000004,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Master Thief",
"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": 611140,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aef6a8",
"Name": "Card",
"Transform": {
"posX": 45.7516441,
"posY": 1.33243251,
"posZ": 69.796936,
"rotX": 0.0199888181,
"rotY": 270.0,
"rotZ": 0.0199999455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shadowfoot",
"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": 611139,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "73569c",
"Name": "Card",
"Transform": {
"posX": 46.03952,
"posY": 1.367064,
"posZ": 70.34122,
"rotX": 0.0199889,
"rotY": 270.0,
"rotZ": 0.0199999884,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Prowler",
"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": 611138,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2680ec",
"Name": "Card",
"Transform": {
"posX": 45.5708771,
"posY": 1.375716,
"posZ": 69.08759,
"rotX": 0.0199888777,
"rotY": 270.0,
"rotZ": 0.01999982,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Repossession Contract",
"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": 611137,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7958ee",
"Name": "Card",
"Transform": {
"posX": 33.8600044,
"posY": 1.29774964,
"posZ": 78.65,
"rotX": 0.0199892428,
"rotY": 269.999939,
"rotZ": 0.0200007427,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Underworld Assasin",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611144,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c32800",
"Name": "Card",
"Transform": {
"posX": 53.2300034,
"posY": 1.30450368,
"posZ": 78.64,
"rotX": 0.0199891385,
"rotY": 269.999969,
"rotZ": 0.0200006962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Discarded Evidence",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611145,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a93fa1",
"Name": "Card",
"Transform": {
"posX": 53.2300034,
"posY": 1.3037008,
"posZ": 76.34,
"rotX": 0.0199894086,
"rotY": 269.999969,
"rotZ": 0.0200004932,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fixer",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611146,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f9f68c",
"Name": "Card",
"Transform": {
"posX": 53.2300034,
"posY": 1.302898,
"posZ": 74.04,
"rotX": 0.019989185,
"rotY": 270.0,
"rotZ": 0.02000054,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Let Me See That!\"",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611147,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "549bc5",
"Name": "Card",
"Transform": {
"posX": 49.5600052,
"posY": 1.30322683,
"posZ": 78.65,
"rotX": 0.0199892,
"rotY": 270.000031,
"rotZ": 0.02000042,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rendezvous",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611148,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6324bb",
"Name": "Card",
"Transform": {
"posX": 49.5600052,
"posY": 1.302424,
"posZ": 76.35,
"rotX": 0.0199890528,
"rotY": 269.999939,
"rotZ": 0.019999871,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The First to Flinch",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611149,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bd09cf",
"Name": "Card",
"Transform": {
"posX": 49.5600052,
"posY": 1.30162108,
"posZ": 74.05,
"rotX": 0.01998923,
"rotY": 270.0,
"rotZ": 0.02000054,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unstable Terrain",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611150,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "28f554",
"Name": "Card",
"Transform": {
"posX": 45.98,
"posY": 1.30197787,
"posZ": 78.65,
"rotX": 0.019989131,
"rotY": 270.000061,
"rotZ": 0.0199997239,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Who's counting?\"",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611151,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5a7b1f",
"Name": "Card",
"Transform": {
"posX": 58.3799973,
"posY": 1.30628288,
"posZ": 78.58999,
"rotX": 0.0199893471,
"rotY": 270.0,
"rotZ": 0.0200006254,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Working the Angles",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611152,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d9180a",
"Name": "Card",
"Transform": {
"posX": 52.9399948,
"posY": 1.30462575,
"posZ": -61.220005,
"rotX": 0.0199888386,
"rotY": 270.0,
"rotZ": 0.0199999362,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scouting Network",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611153,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7b85ca",
"Name": "Card",
"Transform": {
"posX": 58.1,
"posY": 1.30640852,
"posZ": -61.27,
"rotX": 0.0199886616,
"rotY": 270.0,
"rotZ": 0.0199998058,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flawless Execution",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611154,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "10f878",
"Name": "Card",
"Transform": {
"posX": 40.2900047,
"posY": 1.3002125,
"posZ": -61.2199974,
"rotX": 0.019981293,
"rotY": 270.021179,
"rotZ": 0.0200073,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Platinum Club",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611155,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5a0c55",
"Name": "Card",
"Transform": {
"posX": 40.29,
"posY": 1.29940963,
"posZ": -63.52,
"rotX": 0.01998927,
"rotY": 270.0,
"rotZ": 0.0199999642,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Klabb",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611156,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6cddbe",
"Name": "Card",
"Transform": {
"posX": 36.6199951,
"posY": 1.29893565,
"posZ": -61.2100029,
"rotX": 0.0199887622,
"rotY": 270.0,
"rotZ": 0.0199998,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stacked Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611157,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6321f",
"Name": "Card",
"Transform": {
"posX": 52.9399948,
"posY": 1.30382288,
"posZ": -63.5200043,
"rotX": 0.019989308,
"rotY": 270.0,
"rotZ": 0.0200004485,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crackdown",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611158,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1408f3",
"Name": "Card",
"Transform": {
"posX": 49.27999,
"posY": 1.30335236,
"posZ": -61.2100029,
"rotX": 0.0199888,
"rotY": 270.0,
"rotZ": 0.0199999623,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "End of the Line",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611159,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17937a",
"Name": "Card",
"Transform": {
"posX": 49.279995,
"posY": 1.30254948,
"posZ": -63.5100021,
"rotX": 0.0199891757,
"rotY": 269.999969,
"rotZ": 0.0200004764,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Royal Flush",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611160,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "523d1c",
"Name": "Card",
"Transform": {
"posX": 36.61999,
"posY": 1.29813278,
"posZ": -63.5100021,
"rotX": 0.0199890956,
"rotY": 269.999969,
"rotZ": 0.0200004634,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Underworld Couriers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611161,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9aeb4e",
"Name": "Card",
"Transform": {
"posX": 40.96,
"posY": 1.29701519,
"posZ": 69.45,
"rotX": 0.0199890956,
"rotY": 270.0,
"rotZ": 0.01999994,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Celestial Inscriptions",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611162,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2c2198",
"Name": "Card",
"Transform": {
"posX": 40.96,
"posY": 1.29621232,
"posZ": 67.15,
"rotX": 0.019989308,
"rotY": 270.0,
"rotZ": 0.0199998114,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infuse Strength",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611163,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca0e26",
"Name": "Card",
"Transform": {
"posX": 37.4199944,
"posY": 1.29578364,
"posZ": 69.45999,
"rotX": 0.0199892353,
"rotY": 270.000061,
"rotZ": 0.0200003758,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rending",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611164,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "511858",
"Name": "Card",
"Transform": {
"posX": 37.4199944,
"posY": 1.29498076,
"posZ": 67.159996,
"rotX": 0.0199893434,
"rotY": 270.000061,
"rotZ": 0.0200006627,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trace Scrying",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611165,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b03d3b",
"Name": "Card",
"Transform": {
"posX": 33.8599968,
"posY": 1.29453814,
"posZ": 69.44999,
"rotX": 0.0199892242,
"rotY": 270.0,
"rotZ": 0.0200006124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wayward Pilgrim",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611166,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f2b8f1",
"Name": "Card",
"Transform": {
"posX": 53.2299957,
"posY": 1.3012923,
"posZ": 69.4399948,
"rotX": 0.0199889168,
"rotY": 270.0,
"rotZ": 0.0199998766,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flickering Memories",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611167,
"SidewaysCard": false,
"CustomDeck": {
"6111": {
"FaceURL": "https://i.imgur.com/YPVGtwb.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1f504e",
"Name": "Card",
"Transform": {
"posX": 49.5599976,
"posY": 1.30001545,
"posZ": 69.44999,
"rotX": 0.019989416,
"rotY": 270.0,
"rotZ": 0.0200007241,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Recreation",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 200,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d70fc5",
"Name": "Card",
"Transform": {
"posX": 49.5599976,
"posY": 1.29921257,
"posZ": 67.1499939,
"rotX": 0.0199890211,
"rotY": 270.000061,
"rotZ": 0.0200007111,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shockwave",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 201,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c94f94",
"Name": "Card",
"Transform": {
"posX": 58.3799973,
"posY": 1.3030715,
"posZ": 69.38999,
"rotX": 0.0199892689,
"rotY": 270.0,
"rotZ": 0.020000523,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Ideas, New Methods",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 202,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a096d",
"Name": "Card",
"Transform": {
"posX": 52.94,
"posY": 1.30221713,
"posZ": -68.12,
"rotX": 0.0199889485,
"rotY": 270.0,
"rotZ": 0.0199998766,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rewrite Fate",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 203,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b99c9e",
"Name": "Card",
"Transform": {
"posX": 40.2899971,
"posY": 1.297804,
"posZ": -68.12001,
"rotX": 0.0199893322,
"rotY": 270.0,
"rotZ": 0.02000067,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infuse Strength",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 204,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0f07ed",
"Name": "Card",
"Transform": {
"posX": 40.29,
"posY": 1.29700112,
"posZ": -70.4200058,
"rotX": 0.0199891124,
"rotY": 270.0,
"rotZ": 0.0200006571,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rending",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 205,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7bdfc",
"Name": "Card",
"Transform": {
"posX": 36.6199951,
"posY": 1.296527,
"posZ": -68.11001,
"rotX": 0.0199894626,
"rotY": 270.0,
"rotZ": 0.0200006,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trace Scrying",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 206,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df9c9a",
"Name": "Card",
"Transform": {
"posX": 52.9399948,
"posY": 1.30141437,
"posZ": -70.4200058,
"rotX": 0.019989159,
"rotY": 270.000031,
"rotZ": 0.0199996978,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bend Reality",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 207,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a33e94",
"Name": "Card",
"Transform": {
"posX": 58.0999947,
"posY": 1.3039999,
"posZ": -68.1700058,
"rotX": 0.0199892968,
"rotY": 270.0,
"rotZ": 0.020000536,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blessing From Beyond",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 208,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "87a130",
"Name": "Card",
"Transform": {
"posX": 36.62,
"posY": 1.29572427,
"posZ": -70.41,
"rotX": 0.0199888125,
"rotY": 270.000031,
"rotZ": 0.0199992321,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dale Briggs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 209,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb1a59",
"Name": "Card",
"Transform": {
"posX": 32.9899979,
"posY": 1.29526067,
"posZ": -68.11001,
"rotX": 0.0199893545,
"rotY": 270.000031,
"rotZ": 0.0200004224,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shackles of the Deep",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 210,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8593d6",
"Name": "Card",
"Transform": {
"posX": 49.279995,
"posY": 1.30094373,
"posZ": -68.11001,
"rotX": 0.01998928,
"rotY": 270.0,
"rotZ": 0.0200006887,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souls of the Forgotten",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 211,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fcee80",
"Name": "Card",
"Transform": {
"posX": 32.9899979,
"posY": 1.29445779,
"posZ": -70.41001,
"rotX": 0.01998915,
"rotY": 270.000031,
"rotZ": 0.0200005826,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rending",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 212,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "111660",
"Name": "Card",
"Transform": {
"posX": 29.3399944,
"posY": 1.29398727,
"posZ": -68.11001,
"rotX": 0.0199895557,
"rotY": 270.0,
"rotZ": 0.0200000424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trace Scrying",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 213,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f67386",
"Name": "Card",
"Transform": {
"posX": 40.96,
"posY": 1.29460657,
"posZ": 62.55,
"rotX": 0.01998915,
"rotY": 270.0,
"rotZ": 0.0199999269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cautious",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 214,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7370d3",
"Name": "Card",
"Transform": {
"posX": 40.96,
"posY": 1.29380369,
"posZ": 60.25,
"rotX": 0.019989077,
"rotY": 270.000031,
"rotZ": 0.0199998338,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hand Wraps",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 215,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "116ff0",
"Name": "Card",
"Transform": {
"posX": 37.420002,
"posY": 1.29337513,
"posZ": 62.5600052,
"rotX": 0.01998888,
"rotY": 270.0,
"rotZ": 0.0199998729,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hatchet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 216,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "637b1b",
"Name": "CardCustom",
"Transform": {
"posX": 53.23,
"posY": 1.30048943,
"posZ": 67.14,
"rotX": 0.0199932754,
"rotY": 269.987579,
"rotZ": 0.0199955683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 611200,
"SidewaysCard": false,
"CustomDeck": {
"6112": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1831289411765461083/4A97795E53DB040FE3A1D682F9CF923C5B86627C/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dfce17",
"Name": "Card",
"Transform": {
"posX": 33.86,
"posY": 1.29212964,
"posZ": 62.5499954,
"rotX": 0.01998889,
"rotY": 270.0,
"rotZ": 0.0199998971,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lucky Rabbit",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 217,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "be3c16",
"Name": "Card",
"Transform": {
"posX": 37.4199944,
"posY": 1.29257226,
"posZ": 60.2599945,
"rotX": 0.0199886765,
"rotY": 270.000031,
"rotZ": 0.0199999418,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Maintenance Worker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 218,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a95bfe",
"Name": "Card",
"Transform": {
"posX": 33.86,
"posY": 1.29132676,
"posZ": 60.2499962,
"rotX": 0.0199887715,
"rotY": 270.000031,
"rotZ": 0.0200000219,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ship Captain",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 219,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33aaf7",
"Name": "Card",
"Transform": {
"posX": 30.3099937,
"posY": 1.29089117,
"posZ": 62.5499954,
"rotX": 0.0199888926,
"rotY": 270.0,
"rotZ": 0.0199992936,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Work Boots",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 220,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7de8e",
"Name": "Card",
"Transform": {
"posX": 53.2299957,
"posY": 1.2988838,
"posZ": 62.5399971,
"rotX": 0.01998895,
"rotY": 269.999969,
"rotZ": 0.02000004,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysteries of the Forest",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 221,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0c634d",
"Name": "Card",
"Transform": {
"posX": 53.2299957,
"posY": 1.29808092,
"posZ": 60.2399979,
"rotX": 0.01998867,
"rotY": 269.999969,
"rotZ": 0.0199997555,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Soul Searching",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 222,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "43bb24",
"Name": "Card",
"Transform": {
"posX": 58.38,
"posY": 1.300663,
"posZ": 62.4899979,
"rotX": 0.0199885461,
"rotY": 270.000031,
"rotZ": 0.0199999567,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brute Force",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 223,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17d6e1",
"Name": "Card",
"Transform": {
"posX": 58.3799973,
"posY": 1.29986012,
"posZ": 60.1899948,
"rotX": 0.0199888125,
"rotY": 270.000031,
"rotZ": 0.02000002,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumpy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 224,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f16d4c",
"Name": "Card",
"Transform": {
"posX": 58.3899956,
"posY": 1.2990607,
"posZ": 57.8899956,
"rotX": 0.0199886337,
"rotY": 270.000061,
"rotZ": 0.0199999344,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nosy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 225,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e7cddc",
"Name": "Card",
"Transform": {
"posX": 58.3799973,
"posY": 1.29825437,
"posZ": 55.5899963,
"rotX": 0.019988751,
"rotY": 270.000031,
"rotZ": 0.0200000349,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Survival Skills",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 226,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1c6ec5",
"Name": "Card",
"Transform": {
"posX": 58.3799973,
"posY": 1.29745162,
"posZ": 53.2899971,
"rotX": 0.0199887455,
"rotY": 270.000031,
"rotZ": 0.01999995,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Touchy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 227,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33920c",
"Name": "Card",
"Transform": {
"posX": 40.2899971,
"posY": 1.29539537,
"posZ": -75.0200043,
"rotX": 0.0199892987,
"rotY": 270.0,
"rotZ": 0.0200006962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hatchet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 228,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a30b62",
"Name": "Card",
"Transform": {
"posX": 40.2899971,
"posY": 1.2945925,
"posZ": -77.32001,
"rotX": 0.0199892968,
"rotY": 270.0,
"rotZ": 0.0200004447,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Maintenance Worker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 229,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "032236",
"Name": "Card",
"Transform": {
"posX": 52.9399948,
"posY": 1.29980862,
"posZ": -75.0200043,
"rotX": 0.0199891254,
"rotY": 270.0,
"rotZ": 0.02000074,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Follow Through",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 230,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6da56c",
"Name": "Card",
"Transform": {
"posX": 36.6199951,
"posY": 1.29411852,
"posZ": -75.01001,
"rotX": 0.0199893042,
"rotY": 270.0,
"rotZ": 0.0200007148,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Down to Earth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 231,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "83e64d",
"Name": "Card",
"Transform": {
"posX": 36.6199951,
"posY": 1.29331565,
"posZ": -77.3100052,
"rotX": 0.0199892744,
"rotY": 270.000061,
"rotZ": 0.0200006552,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hand Wrap",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 232,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ffbf0",
"Name": "Card",
"Transform": {
"posX": 58.0999947,
"posY": 1.30159128,
"posZ": -75.07001,
"rotX": 0.0199892111,
"rotY": 270.0,
"rotZ": 0.0200007185,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumpy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 233,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a52748",
"Name": "Card",
"Transform": {
"posX": 58.0999947,
"posY": 1.3007884,
"posZ": -77.37001,
"rotX": 0.01998938,
"rotY": 270.000061,
"rotZ": 0.0200006384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nosy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 234,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "553a29",
"Name": "Card",
"Transform": {
"posX": 58.1,
"posY": 1.29998565,
"posZ": -79.6700058,
"rotX": 0.0199891385,
"rotY": 270.000061,
"rotZ": 0.0200007614,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Touchy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 235,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "512c1c",
"Name": "Card",
"Transform": {
"posX": 32.99,
"posY": 1.29285216,
"posZ": -75.01001,
"rotX": 0.0199893061,
"rotY": 270.000031,
"rotZ": 0.0200006235,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Damned",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 236,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e90374",
"Name": "Card",
"Transform": {
"posX": 40.29,
"posY": 1.29298687,
"posZ": -81.92,
"rotX": 0.0199891143,
"rotY": 270.000061,
"rotZ": 0.0199999213,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sword of the Last Crusader",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 237,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a539c5",
"Name": "Card",
"Transform": {
"posX": 58.4613037,
"posY": 1.513605,
"posZ": 41.6438866,
"rotX": -7.25289E-06,
"rotY": 269.999817,
"rotZ": -1.07817436E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Goal Oriented ",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 238,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b99104",
"Name": "Card",
"Transform": {
"posX": 40.29,
"posY": 1.292184,
"posZ": -84.22,
"rotX": 0.0199891832,
"rotY": 270.0,
"rotZ": 0.0199997872,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shattered Timepiece",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 239,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "403150",
"Name": "Card",
"Transform": {
"posX": 36.62,
"posY": 1.29171,
"posZ": -81.91,
"rotX": 0.0199890751,
"rotY": 270.0,
"rotZ": 0.0199998971,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agent of the Order",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 240,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "022652",
"Name": "Card",
"Transform": {
"posX": 36.62,
"posY": 1.29090714,
"posZ": -84.21,
"rotX": 0.0199891068,
"rotY": 270.0,
"rotZ": 0.0199999772,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lenora Howard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 241,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c9f733",
"Name": "Card",
"Transform": {
"posX": 52.95,
"posY": 1.29740357,
"posZ": -81.92,
"rotX": 0.0199891422,
"rotY": 270.000061,
"rotZ": 0.0199998189,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Look to the Stars",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 242,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "10c0dc",
"Name": "Card",
"Transform": {
"posX": 32.99,
"posY": 1.29044354,
"posZ": -81.91,
"rotX": 0.0199891981,
"rotY": 270.000031,
"rotZ": 0.0199999586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Final Flame",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 243,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c90cc1",
"Name": "Card",
"Transform": {
"posX": 40.95742,
"posY": 1.28978848,
"posZ": 48.74931,
"rotX": 0.0199459847,
"rotY": 270.0218,
"rotZ": 0.019982703,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mask of the Forgotten",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 244,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2bcefa",
"Name": "Card",
"Transform": {
"posX": 40.990963,
"posY": 1.28894031,
"posZ": 46.28639,
"rotX": 0.0199910887,
"rotY": 269.994354,
"rotZ": 0.0199978519,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ring of Desire",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 245,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "180ddc",
"Name": "Card",
"Transform": {
"posX": 53.21,
"posY": 1.29406309,
"posZ": 48.75,
"rotX": 0.019989159,
"rotY": 270.0,
"rotZ": 0.019999722,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Calm the Nerves",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 246,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da9e4a",
"Name": "Card",
"Transform": {
"posX": 58.3699875,
"posY": 1.29582846,
"posZ": 48.64995,
"rotX": 0.01995375,
"rotY": 269.998047,
"rotZ": 0.0199747123,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Following the Script",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 247,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0eaae4",
"Name": "Card",
"Transform": {
"posX": 58.4999,
"posY": 1.29502773,
"posZ": 46.2264671,
"rotX": 0.01998908,
"rotY": 270.000061,
"rotZ": 0.0199998412,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Life Experience",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 248,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7df192",
"Name": "Card",
"Transform": {
"posX": 52.9300041,
"posY": 1.29499149,
"posZ": -88.81,
"rotX": 0.0199893024,
"rotY": 269.999969,
"rotZ": 0.02000067,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Search Party",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 249,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc4db8",
"Name": "Card",
"Transform": {
"posX": 40.2699966,
"posY": 1.29057479,
"posZ": -88.8100052,
"rotX": 0.0199893471,
"rotY": 270.0,
"rotZ": 0.0200005788,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Circlet of Sealing",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 250,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cfba31",
"Name": "Card",
"Transform": {
"posX": 40.2699966,
"posY": 1.28976846,
"posZ": -91.12001,
"rotX": 0.0199893173,
"rotY": 270.000061,
"rotZ": 0.0200005956,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Essence of Humanity",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 251,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14bb32",
"Name": "Card",
"Transform": {
"posX": 52.93,
"posY": 1.29418516,
"posZ": -91.12,
"rotX": 0.0199892428,
"rotY": 270.000061,
"rotZ": 0.0199998636,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Breaking your Limits",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 252,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b0f6f7",
"Name": "Card",
"Transform": {
"posX": 24.8664646,
"posY": 1.29889357,
"posZ": 90.91592,
"rotX": 0.0200329125,
"rotY": 269.874756,
"rotZ": 0.0199559275,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Delusional Parasitosis",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 253,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5bddf3",
"Name": "Card",
"Transform": {
"posX": 24.86516,
"posY": 1.29809439,
"posZ": 88.62743,
"rotX": 0.0199813042,
"rotY": 270.0227,
"rotZ": 0.02000774,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overshadowed",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"shad_memory_object"
],
"LayoutGroupSortIndex": 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": 254,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "https://i.imgur.com/fckEGdU.jpg",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 8,
"NumHeight": 7,
"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
}
}
]
}